From f7288f390672f917e05bf03e495b4502e6e1b0cb Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 27 Jul 2016 10:56:55 -0700 Subject: [PATCH] Add art Change-Id: I557c86d2282178d215ea17abb71e556bdc4ba722 --- android/config.go | 8 ++++++++ root.bp | 1 + 2 files changed, 9 insertions(+) diff --git a/android/config.go b/android/config.go index 196df5585..9579256ee 100644 --- a/android/config.go +++ b/android/config.go @@ -360,6 +360,14 @@ func (c *config) Android64() bool { return false } +func (c *config) LibartImgHostBaseAddress() string { + return "0x60000000" +} + +func (c *config) LibartImgDeviceBaseAddress() string { + return "0x70000000" +} + func (c *deviceConfig) Arches() []Arch { var arches []Arch for _, target := range c.config.Targets[Device] { diff --git a/root.bp b/root.bp index 4b03cf14f..c4f2d573b 100644 --- a/root.bp +++ b/root.bp @@ -6,6 +6,7 @@ subdirs = [ ] optional_subdirs = [ + "art", "bionic", "build/kati", "build/tools/*",