Home | History | Annotate | Download | only in pvmp4ffcomposernode
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := \
      5 	src/pvmp4ffcn_port.cpp \
      6  	src/pvmp4ffcn_node.cpp \
      7  	src/pvmp4ffcn_node_cap_config.cpp
      8 
      9 
     10 LOCAL_MODULE := libpvmp4ffcomposernode
     11 
     12 LOCAL_CFLAGS :=  $(PV_CFLAGS)
     13 
     14 
     15 
     16 LOCAL_STATIC_LIBRARIES :=
     17 
     18 LOCAL_SHARED_LIBRARIES := libutils
     19 
     20 LOCAL_C_INCLUDES := \
     21 	$(PV_TOP)/nodes/pvmp4ffcomposernode/src \
     22  	$(PV_TOP)/nodes/pvmp4ffcomposernode/include \
     23  	/installed_include \
     24  	$(PV_TOP)/nodes/pvmp4ffcomposernode/src \
     25  	$(PV_TOP)/nodes/common/include \
     26  	$(PV_TOP)/pvmi/pvmf/include \
     27  	$(PV_TOP)/nodes/pvmp4ffcomposernode/include \
     28  	$(PV_TOP)/baselibs/pv_mime_utils/src \
     29  	$(PV_TOP)/engines/author/include \
     30  	$(PV_TOP)/baselibs/media_data_structures/src \
     31  	$(PV_TOP)/oscl/oscl/osclio/src \
     32  	$(PV_TOP)/fileformats/mp4/composer/config/opencore \
     33  	$(PV_INCLUDES)
     34 
     35 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO)
     36 
     37 LOCAL_COPY_HEADERS := \
     38 	include/pvmp4ffcn_clipconfig.h \
     39  	include/pvmp4ffcn_factory.h \
     40  	include/pvmp4ffcn_trackconfig.h \
     41  	include/pvmp4ffcn_types.h
     42 
     43 include $(BUILD_STATIC_LIBRARY)
     44