You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
771 B
33 lines
771 B
LOCAL_PATH:= $(call my-dir) |
|
|
|
ifeq ($(HOST_OS),linux) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_CLANG := true |
|
LOCAL_SANITIZE := integer |
|
LOCAL_MODULE := fec_test_read |
|
LOCAL_SRC_FILES := test_read.cpp |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_STATIC_LIBRARIES := \ |
|
libfec \ |
|
libfec_rs \ |
|
libcrypto_utils \ |
|
libcrypto \ |
|
libext4_utils \ |
|
libsquashfs_utils \ |
|
libbase |
|
LOCAL_CFLAGS := -Wall -Werror -D_GNU_SOURCE |
|
include $(BUILD_HOST_EXECUTABLE) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_CLANG := true |
|
LOCAL_SANITIZE := integer |
|
LOCAL_MODULE := fec_test_rs |
|
LOCAL_SRC_FILES := test_rs.c |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_STATIC_LIBRARIES := libfec_rs |
|
LOCAL_CFLAGS := -Wall -Werror -D_GNU_SOURCE |
|
LOCAL_C_INCLUDES += external/fec |
|
include $(BUILD_HOST_EXECUTABLE) |
|
|
|
endif # HOST_OS == linux
|
|
|