Re-land I557c86d2282178d215ea17abb71e556bdc4ba722

Change-Id: Ic26e1a6b17569acbfe68b4a219982ce45cecefbd
This commit is contained in:
Colin Cross 2016-07-27 10:56:55 -07:00
parent d46b39d356
commit 0f4e0d6c5d
2 changed files with 14 additions and 0 deletions

View File

@ -360,6 +360,19 @@ func (c *config) Android64() bool {
return false
}
func (c *config) LibartImgHostBaseAddress() string {
return "0x60000000"
}
func (c *config) LibartImgDeviceBaseAddress() string {
switch c.Targets[Device][0].Arch.ArchType {
default:
return "0x70000000"
case Mips, Mips64:
return "0x30000000"
}
}
func (c *deviceConfig) Arches() []Arch {
var arches []Arch
for _, target := range c.config.Targets[Device] {

View File

@ -6,6 +6,7 @@ subdirs = [
]
optional_subdirs = [
"art",
"bionic",
"build/kati",
"build/tools/*",