Home | History | Annotate | Download | only in omx_core_plugin
      1 ifneq ($(BUILD_WITHOUT_PV),true)
      2 LOCAL_PATH := $(call my-dir)
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_SRC_FILES := src/ti_omx_interface.cpp
      6 
      7 LOCAL_MODULE := libVendor_ti_omx
      8 
      9 PV_TOP := external/opencore
     10 
     11 PV_COPY_HEADERS_TO := libpv
     12 
     13 PV_INCLUDES := \
     14 	$(PV_TOP)/android \
     15 	$(PV_TOP)/extern_libs_v2/khronos/openmax/include \
     16 	$(PV_TOP)/engines/common/include \
     17 	$(PV_TOP)/engines/player/config/android \
     18 	$(PV_TOP)/engines/player/include \
     19 	$(PV_TOP)/nodes/pvmediaoutputnode/include \
     20 	$(PV_TOP)/nodes/pvdownloadmanagernode/config/opencore \
     21 	$(PV_TOP)/pvmi/pvmf/include \
     22 	$(PV_TOP)/fileformats/mp4/parser/config/opencore \
     23 	$(PV_TOP)/oscl/oscl/config/android \
     24 	$(PV_TOP)/oscl/oscl/config/shared \
     25 	$(PV_TOP)/engines/author/include \
     26 	$(PV_TOP)/android/drm/oma1/src \
     27 	$(PV_TOP)/build_config/opencore_dynamic \
     28 	$(TARGET_OUT_HEADERS)/$(PV_COPY_HEADERS_TO)
     29 
     30 LOCAL_CFLAGS :=   $(PV_CFLAGS)
     31 
     32 LOCAL_ARM_MODE := arm
     33 
     34 LOCAL_C_INCLUDES := \
     35     $(PV_INCLUDES)
     36 
     37 LOCAL_SHARED_LIBRARIES := libOMX_Core liblog
     38 
     39 -include $(PV_TOP)/Android_platform_extras.mk
     40 
     41 -include $(PV_TOP)/Android_system_extras.mk
     42 
     43 include $(BUILD_SHARED_LIBRARY)
     44 endif
     45