summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2016-01-26 13:44:18 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-01-26 13:44:18 +0000
commit7653b090c96b6166abc6d026e0fabefff840ca96 (patch)
tree61b7c1118195066cf961df6f2c9069f07aed752b
parenta87104f23282588f703d37296a99581e0f940c0c (diff)
parentd112827911122ba6412fd90b8d8b9a9d6db9d513 (diff)
Merge "Add dependency on liblzma."
-rw-r--r--compiler/Android.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/Android.mk b/compiler/Android.mk
index 458973684e..6f32e07ce1 100644
--- a/compiler/Android.mk
+++ b/compiler/Android.mk
@@ -258,9 +258,9 @@ define build-libart-compiler
ifeq ($$(art_ndebug_or_debug),ndebug)
LOCAL_MODULE := libart-compiler
ifeq ($$(art_static_or_shared), static)
- LOCAL_STATIC_LIBRARIES += libart liblz4
+ LOCAL_STATIC_LIBRARIES += libart liblz4 liblzma
else
- LOCAL_SHARED_LIBRARIES += libart liblz4
+ LOCAL_SHARED_LIBRARIES += libart liblz4 liblzma
endif
ifeq ($$(art_target_or_host),target)
LOCAL_FDO_SUPPORT := true
@@ -268,9 +268,9 @@ define build-libart-compiler
else # debug
LOCAL_MODULE := libartd-compiler
ifeq ($$(art_static_or_shared), static)
- LOCAL_STATIC_LIBRARIES += libartd liblz4
+ LOCAL_STATIC_LIBRARIES += libartd liblz4 liblzma
else
- LOCAL_SHARED_LIBRARIES += libartd liblz4
+ LOCAL_SHARED_LIBRARIES += libartd liblz4 liblzma
endif
endif