1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3$(call add-prebuilt-files, ETC) 4LOCAL_PRELINK_MODULE := false 5LOCAL_SRC_FILES := \ 6 src/ti_video_config_parser.cpp \ 7 src/ti_m4v_config_parser.cpp \ 8 src/ti_omx_config_parser.cpp 9 10LOCAL_MODULE := libVendor_ti_omx_config_parser 11 12PV_TOP := external/opencore 13 14PV_COPY_HEADERS_TO := libpv 15 16PV_INCLUDES := \ 17 $(PV_TOP)/android \ 18 $(PV_TOP)/extern_libs_v2/khronos/openmax/include \ 19 $(PV_TOP)/engines/common/include \ 20 $(PV_TOP)/engines/player/config/android \ 21 $(PV_TOP)/engines/player/include \ 22 $(PV_TOP)/nodes/pvmediaoutputnode/include \ 23 $(PV_TOP)/nodes/pvdownloadmanagernode/config/opencore \ 24 $(PV_TOP)/pvmi/pvmf/include \ 25 $(PV_TOP)/fileformats/mp4/parser/config/opencore \ 26 $(PV_TOP)/oscl/oscl/config/android \ 27 $(PV_TOP)/oscl/oscl/config/shared \ 28 $(PV_TOP)/engines/author/include \ 29 $(PV_TOP)/android/drm/oma1/src \ 30 $(PV_TOP)/build_config/opencore_dynamic \ 31 $(PV_TOP)/codecs_v2/omx/omx_common/src \ 32 $(PV_TOP)/codecs_v2/omx/omx_common/include \ 33 $(PV_TOP)/extern_libs_v2/khronos/openmax/include \ 34 $(PV_TOP)/pvmi/pvmf/include \ 35 $(PV_TOP)/oscl/oscl/osclutil/src \ 36 $(TARGET_OUT_HEADERS)/$(PV_COPY_HEADERS_TO) 37 38LOCAL_CFLAGS := $(PV_CFLAGS) 39 40LOCAL_ARM_MODE := arm 41 42LOCAL_COPY_HEADERS := \ 43 inc/ti_video_config_parser.h \ 44 inc/ti_m4v_config_parser.h \ 45 inc/ti_omx_config_parser.h 46 47LOCAL_C_INCLUDES := \ 48 $(PV_INCLUDES) 49 50-include $(PV_TOP)/Android_platform_extras.mk 51 52-include $(PV_TOP)/Android_system_extras.mk 53 54LOCAL_SHARED_LIBRARIES += libopencore_common 55 56include $(BUILD_SHARED_LIBRARY) 57