aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deymo <deymo@google.com>2017-01-11 11:38:57 -0800
committerAlex Deymo <deymo@google.com>2017-01-11 11:38:57 -0800
commit50cccace66578aa91a824423109b85584a771c26 (patch)
tree78c75fec441c6fe7a2297612024fe6961b07df66
parent791afbe58ff9f55145c4adf632ab8cc9ca6e5686 (diff)
downloadfec-50cccace66578aa91a824423109b85584a771c26.tar.gz
Remove "_host" suffix from "libfec_rs" module definition.
libfec_rs_host is now renamed to libfec_rs. Bug: 34220783 Change-Id: I92e6f8e88d795dbd4753b7d83d2d64cf53e7e433
-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)