summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2018-02-16 10:09:54 +0000
committerNicolas Geoffray <ngeoffray@google.com>2018-02-16 10:09:54 +0000
commit91aac092f672242a97eb6d05c96287015a4c0f18 (patch)
treecc70926dad9415c87cacc83b68922e46d55e9e3b /Android.mk
parent86f452c179dc6624b0394d7ca9276ab496c90dc8 (diff)
downloadart-91aac092f672242a97eb6d05c96287015a4c0f18.tar.gz
art-91aac092f672242a97eb6d05c96287015a4c0f18.tar.bz2
art-91aac092f672242a97eb6d05c96287015a4c0f18.zip
Remove libdexfiled.so from public libraries for golem.
golem doesn't build it. bug: 22322814 Change-Id: I8723236773f8b660d34e286e35207ad466badef0
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 361ceecc2f..a6eb0be77c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -486,8 +486,10 @@ build-art-target-golem: dex2oat dalvikvm patchoat linker libstdc++ \
$(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
$(TARGET_CORE_IMG_OUT_BASE).art \
$(TARGET_CORE_IMG_OUT_BASE)-interpreter.art
+ # remove libartd.so and libdexfiled.so from public.libraries.txt because golem builds
+ # won't have it.
sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
- # remove libartd.so from public.libraries.txt because golem builds won't have it.
+ sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
########################################################################
# Phony target for building what go/lem requires on host.