summaryrefslogtreecommitdiff
path: root/libfec
diff options
context:
space:
mode:
authorAlex Deymo <deymo@google.com>2017-01-11 15:07:36 -0800
committerAlex Deymo <deymo@google.com>2017-01-11 19:17:43 -0800
commit992dab285fc35fec7067869df9d33ec0942eae7a (patch)
treefb311b7f055ccb379e1187c1d047024e45c2d778 /libfec
parentf417a8d230787bcf62cd259b1da3f4d93bebe3ee (diff)
downloadextras-992dab285fc35fec7067869df9d33ec0942eae7a.tar.gz
Remove "_host" suffix from libsquashfs_utils.
Bug: 34220783 Change-Id: I9a140ed7bafdb8342dbdc2c7143a765acb86ecb9
Diffstat (limited to 'libfec')
-rw-r--r--libfec/Android.mk10
-rw-r--r--libfec/test/Android.mk2
2 files changed, 4 insertions, 8 deletions
diff --git a/libfec/Android.mk b/libfec/Android.mk
index 5399bb73..da60fccb 100644
--- a/libfec/Android.mk
+++ b/libfec/Android.mk
@@ -18,6 +18,7 @@ common_src_files := \
common_static_libraries := \
libext4_utils \
libfec_rs \
+ libsquashfs_utils \
libcrypto_utils \
libcrypto \
libcutils \
@@ -31,10 +32,7 @@ LOCAL_SANITIZE := integer
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_MODULE := libfec
LOCAL_SRC_FILES := $(common_src_files)
-LOCAL_STATIC_LIBRARIES := \
- libsquashfs_utils \
- libcutils \
- $(common_static_libraries)
+LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
@@ -47,9 +45,7 @@ endif
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_MODULE := libfec
LOCAL_SRC_FILES := $(common_src_files)
-LOCAL_STATIC_LIBRARIES := \
- libsquashfs_utils_host \
- $(common_static_libraries)
+LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
include $(BUILD_HOST_STATIC_LIBRARY)
include $(LOCAL_PATH)/test/Android.mk
diff --git a/libfec/test/Android.mk b/libfec/test/Android.mk
index 4abe6f61..56a69789 100644
--- a/libfec/test/Android.mk
+++ b/libfec/test/Android.mk
@@ -14,7 +14,7 @@ LOCAL_STATIC_LIBRARIES := \
libcrypto_utils \
libcrypto \
libext4_utils \
- libsquashfs_utils_host \
+ libsquashfs_utils \
libbase
LOCAL_CFLAGS := -Wall -Werror -D_GNU_SOURCE
include $(BUILD_HOST_EXECUTABLE)