Home | History | Annotate | Download | only in libvpx
      1 # Output variables:
      2 # libvpx_config_dir_arm64
      3 # libvpx_codec_srcs_c_arm64
      4 # libvpx_codec_srcs_asm_arm64
      5 
      6 libvpx_target := config/arm64
      7 
      8 LOCAL_ARM_MODE := arm
      9 
     10 libvpx_config_dir_arm64 := $(LOCAL_PATH)/$(libvpx_target)
     11 libvpx_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).
     14 libvpx_codec_srcs_c_arm64 := $(addprefix libvpx/, $(filter-out vpx_config.c, \
     15     $(filter %.c, $(libvpx_codec_srcs)))) \
     16     $(libvpx_target)/vpx_config.c
     17 
     18 libvpx_codec_srcs_asm_arm64 := $(filter %.asm.s, $(libvpx_codec_srcs))
     19