aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deymo <deymo@google.com>2017-01-12 21:37:42 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-12 21:37:42 +0000
commite57032238e3029a528f2ee254430fb442a1bec09 (patch)
tree78c75fec441c6fe7a2297612024fe6961b07df66
parent791afbe58ff9f55145c4adf632ab8cc9ca6e5686 (diff)
parent050a843888db2db4ff9b6f38d4805036fef96794 (diff)
downloadfec-e57032238e3029a528f2ee254430fb442a1bec09.tar.gz
Remove "_host" suffix from "libfec_rs" module definition. am: 50cccace66 am: db43d454d3
am: 050a843888 Change-Id: I1599af560e96cd38e7498033299202375f53ca79
-rw-r--r--Android.mk17
1 files changed, 8 insertions, 9 deletions
diff --git a/Android.mk b/Android.mk
index 88fa518..9b2d6da 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,25 +1,24 @@
LOCAL_PATH:= $(call my-dir)
+common_src_files := \
+ encode_rs_char.c \
+ decode_rs_char.c \
+ init_rs_char.c
+
include $(CLEAR_VARS)
LOCAL_MODULE := libfec_rs
LOCAL_CLANG := true
LOCAL_CFLAGS := -Wall -O3
LOCAL_SANITIZE := integer
-LOCAL_SRC_FILES := \
- encode_rs_char.c \
- decode_rs_char.c \
- init_rs_char.c
+LOCAL_SRC_FILES := $(common_src_files)
include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
-LOCAL_MODULE := libfec_rs_host
+LOCAL_MODULE := libfec_rs
LOCAL_CLANG := true
LOCAL_CFLAGS := -Wall -O3
ifeq ($(HOST_OS),linux)
LOCAL_SANITIZE := integer
endif
-LOCAL_SRC_FILES := \
- encode_rs_char.c \
- decode_rs_char.c \
- init_rs_char.c
+LOCAL_SRC_FILES := $(common_src_files)
include $(BUILD_HOST_STATIC_LIBRARY)