diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-02 15:24:25 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-08 15:26:05 +0100 |
commit | f63a0a529ef9d2b819dc1bc7754fcf9e1d60bd74 (patch) | |
tree | e9e746230d5474f343c8e9fdf779836b5d309d20 /Android.mk | |
parent | 7c7686e62d262f1823876cebb3700e20f967dd56 (diff) | |
download | art-f63a0a529ef9d2b819dc1bc7754fcf9e1d60bd74.zip art-f63a0a529ef9d2b819dc1bc7754fcf9e1d60bd74.tar.gz art-f63a0a529ef9d2b819dc1bc7754fcf9e1d60bd74.tar.bz2 |
Clean-up and make the art script usable on target.
Also add a phony target to build what's needed to use it.
Change-Id: I0bca6b0cbe921653de05fec0ae0cbbff63df580e
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -355,7 +355,7 @@ build-art-host: $(ART_HOST_EXECUTABLES) $(ART_HOST_GTEST_EXECUTABLES) $(HO build-art-target: $(ART_TARGET_EXECUTABLES) $(ART_TARGET_GTEST_EXECUTABLES) $(TARGET_CORE_IMG_OUT) $(TARGET_OUT_SHARED_LIBRARIES)/libjavacore.so ######################################################################## -# "m art-host" for just building the files needed to run the art script +# "m art-host" for just building the files needed to run the art script on the host. .PHONY: art-host ifeq ($(HOST_PREFER_32_BIT),true) art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/patchoat $(HOST_CORE_IMG_OUT) $(HOST_OUT)/lib/libjavacore.so $(HOST_OUT)/bin/dalvikvm @@ -363,6 +363,11 @@ else art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm64 $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/patchoat $(HOST_CORE_IMG_OUT) $(HOST_OUT)/lib/libjavacore.so $(HOST_OUT)/lib64/libjavacore.so $(HOST_OUT)/bin/dalvikvm endif +# "m art-target" for just building the files needed to run the art script on the target. +# Note that the script can run a dalvikvm executable that is not necessarily /system/bin/dalvikvm. +.PHONY: art-target +art-target: adb build-art-target art libnativehelper libjavacore + .PHONY: art-host-debug art-host-debug: art-host $(HOST_OUT)/lib/libartd.so $(HOST_OUT)/bin/dex2oatd $(HOST_OUT)/bin/patchoatd |