diff options
author | Ian Rogers <irogers@google.com> | 2014-10-30 11:19:14 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-10-30 11:19:14 -0700 |
commit | 872dd8208f00c667af8d9e0fd07fdd0ada56d437 (patch) | |
tree | 2f69282f19c72ef157dad9fdc7b6c6daf8a1bf38 /dex2oat/Android.mk | |
parent | af62cf99a1a4320157e1074c1e65c5fbb0320349 (diff) | |
download | art-872dd8208f00c667af8d9e0fd07fdd0ada56d437.zip art-872dd8208f00c667af8d9e0fd07fdd0ada56d437.tar.gz art-872dd8208f00c667af8d9e0fd07fdd0ada56d437.tar.bz2 |
Tidy and reduce ART library dependencies on the host.
Move to shared rather than static libraries. Avoids capture of all static
libraries library dependencies.
Change-Id: I2be96e92dad4ed1842d76b044745f2a2e15372eb
Diffstat (limited to 'dex2oat/Android.mk')
-rw-r--r-- | dex2oat/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex2oat/Android.mk b/dex2oat/Android.mk index 2ef826b..4f39c42 100644 --- a/dex2oat/Android.mk +++ b/dex2oat/Android.mk @@ -38,8 +38,8 @@ endif # We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target. ifeq ($(ART_BUILD_HOST_NDEBUG),true) - $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug)) + $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler libziparchive-host,art/compiler,host,ndebug)) endif ifeq ($(ART_BUILD_HOST_DEBUG),true) - $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug)) + $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler libziparchive-host,art/compiler,host,debug)) endif |