summaryrefslogtreecommitdiff
path: root/build/make/Android.mk
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-10-31 18:34:16 -0700
committerJames Zern <jzern@google.com>2016-10-31 18:34:16 -0700
commitae32318170e09b918269091b95ed82f20130c8e6 (patch)
tree1c6a89bcb597f19aed89bcd9c5eb0e8ae207a565 /build/make/Android.mk
parent1ddb4c03622a654452a5e76b5a0e4db715dc350d (diff)
downloadlibvpx-ae32318170e09b918269091b95ed82f20130c8e6.tar
libvpx-ae32318170e09b918269091b95ed82f20130c8e6.tar.gz
libvpx-ae32318170e09b918269091b95ed82f20130c8e6.tar.bz2
libvpx-ae32318170e09b918269091b95ed82f20130c8e6.zip
build/make/Android.mk: fix armeabi-v7a build
vpx_config.asm and idct_neon.asm.S are required since: 3ae2597 idct,NEON: add a tran_low_t->s16 load adapter Change-Id: If5959a25edb370dd7dcdca71c96e9a5aad0840ce
Diffstat (limited to 'build/make/Android.mk')
-rw-r--r--build/make/Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/make/Android.mk b/build/make/Android.mk
index e4ae3629e..2fe618bf4 100644
--- a/build/make/Android.mk
+++ b/build/make/Android.mk
@@ -164,7 +164,8 @@ endif
LOCAL_CFLAGS += \
-DHAVE_CONFIG_H=vpx_config.h \
-I$(LIBVPX_PATH) \
- -I$(ASM_CNV_PATH)
+ -I$(ASM_CNV_PATH) \
+ -I$(ASM_CNV_PATH)/libvpx
LOCAL_MODULE := libvpx
@@ -185,7 +186,8 @@ endif
$$(rtcd_dep_template_SRCS): vpx_scale_rtcd.h
$$(rtcd_dep_template_SRCS): vpx_dsp_rtcd.h
-ifneq ($(findstring $(TARGET_ARCH_ABI),x86 x86_64),)
+rtcd_dep_template_CONFIG_ASM_ABIS := x86 x86_64 armeabi-v7a
+ifneq ($(findstring $(TARGET_ARCH_ABI),$(rtcd_dep_template_CONFIG_ASM_ABIS)),)
$$(rtcd_dep_template_SRCS): vpx_config.asm
endif
endef