1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 src/amr_enc.cpp \ 6 src/omx_amrenc_component.cpp 7 8 9LOCAL_MODULE := libomx_amrenc_component_lib 10 11LOCAL_CFLAGS := $(PV_CFLAGS_MINUS_VISIBILITY) 12 13LOCAL_ARM_MODE := arm 14 15LOCAL_STATIC_LIBRARIES := 16 17LOCAL_SHARED_LIBRARIES := 18 19LOCAL_C_INCLUDES := \ 20 $(PV_TOP)/codecs_v2/omx/omx_amrenc/src \ 21 $(PV_TOP)/codecs_v2/omx/omx_amrenc/include \ 22 $(PV_TOP)/extern_libs_v2/khronos/openmax/include \ 23 $(PV_TOP)/codecs_v2/audio/gsm_amr/amr_nb/common/src \ 24 $(PV_TOP)/codecs_v2/audio/gsm_amr/amr_nb/common/include \ 25 $(PV_TOP)/codecs_v2/audio/gsm_amr/amr_nb/enc/src \ 26 $(PV_TOP)/codecs_v2/audio/gsm_amr/amr_nb/enc/include \ 27 $(PV_INCLUDES) 28 29LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 30 31LOCAL_COPY_HEADERS := \ 32 include/amr_enc.h \ 33 include/omx_amrenc_component.h 34 35include $(BUILD_STATIC_LIBRARY) 36