blob: 0740fd908a966c5335d1b91d63f240adbf445b03 [file] [log] [blame]
Ying Wang08af1982014-03-12 17:49:58 -07001# Output variables:
2# libvpx_config_dir_arm64
3# libvpx_codec_srcs_c_arm64
4# libvpx_codec_srcs_asm_arm64
5
Vignesh Venkatasubramanian7ce0a1d2015-08-25 11:05:01 -07006libvpx_target := config/arm64
7
8LOCAL_ARM_MODE := arm
Ying Wang08af1982014-03-12 17:49:58 -07009
10libvpx_config_dir_arm64 := $(LOCAL_PATH)/$(libvpx_target)
11libvpx_codec_srcs := $(sort $(shell cat $(libvpx_config_dir_arm64)/libvpx_srcs.txt))
12
13# vpx_config.c is an auto-generated file in $(libvpx_target).
14libvpx_codec_srcs_c_arm64 := $(addprefix libvpx/, $(filter-out vpx_config.c, \
15 $(filter %.c, $(libvpx_codec_srcs)))) \
16 $(libvpx_target)/vpx_config.c
17
18libvpx_codec_srcs_asm_arm64 := $(filter %.asm.s, $(libvpx_codec_srcs))