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 /oatdump | |
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 'oatdump')
-rw-r--r-- | oatdump/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oatdump/Android.mk b/oatdump/Android.mk index 25d10bd..a8f120f 100644 --- a/oatdump/Android.mk +++ b/oatdump/Android.mk @@ -25,14 +25,14 @@ ifeq ($(ART_BUILD_TARGET_NDEBUG),true) $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libcutils libart-disassembler libart-compiler,art/disassembler art/compiler,target,ndebug)) endif ifeq ($(ART_BUILD_TARGET_DEBUG),true) - $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libcutils libartd-disassembler libart-compiler,art/disassembler art/compiler,target,debug)) + $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libcutils libartd-disassembler libartd-compiler,art/disassembler art/compiler,target,debug)) endif ifeq ($(ART_BUILD_HOST_NDEBUG),true) $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libart-disassembler libart-compiler,art/disassembler art/compiler,host,ndebug)) endif ifeq ($(ART_BUILD_HOST_DEBUG),true) - $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libartd-disassembler libart-compiler,art/disassembler art/compiler,host,debug)) + $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libartd-disassembler libartd-compiler,art/disassembler art/compiler,host,debug)) endif ######################################################################## |