crypto-sources.mk revision a04d78d392463df4e69a64360c952ffa5abd22f7
1LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/sources.mk
2include $(LOCAL_PATH)/sources.mk
3
4LOCAL_CFLAGS += -I$(LOCAL_PATH)/src/include -I$(LOCAL_PATH)/src/crypto -Wno-unused-parameter
5# Do not add in the architecture-specific files if we don't want to build assembly
6ifeq ($(LOCAL_IS_HOST_MODULE),true)
7LOCAL_SRC_FILES_linux_x86 := $(linux_x86_sources)
8LOCAL_SRC_FILES_linux_x86_64 := $(linux_x86_64_sources)
9else
10LOCAL_SRC_FILES_x86 := $(linux_x86_sources)
11LOCAL_SRC_FILES_x86_64 := $(linux_x86_64_sources)
12LOCAL_SRC_FILES_arm := $(linux_arm_sources)
13LOCAL_SRC_FILES_arm64 := $(linux_aarch64_sources)
14endif
15LOCAL_SRC_FILES += $(crypto_sources)
16