diff options
| author | 2016-01-26 13:44:18 +0000 | |
|---|---|---|
| committer | 2016-01-26 13:44:18 +0000 | |
| commit | 7653b090c96b6166abc6d026e0fabefff840ca96 (patch) | |
| tree | 61b7c1118195066cf961df6f2c9069f07aed752b | |
| parent | a87104f23282588f703d37296a99581e0f940c0c (diff) | |
| parent | d112827911122ba6412fd90b8d8b9a9d6db9d513 (diff) | |
Merge "Add dependency on liblzma."
| -rw-r--r-- | compiler/Android.mk | 8 |
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 |