1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 src/pvmp4ffrec_factory.cpp \ 6 src/pvmp4ffrec_plugin.cpp 7 8 9LOCAL_MODULE := libpvmp4ffrecognizer 10 11LOCAL_CFLAGS := $(PV_CFLAGS) 12 13 14 15LOCAL_STATIC_LIBRARIES := 16 17LOCAL_SHARED_LIBRARIES := 18 19LOCAL_C_INCLUDES := \ 20 $(PV_TOP)/pvmi/recognizer/plugins/pvmp4ffrecognizer/src \ 21 $(PV_TOP)/pvmi/recognizer/plugins/pvmp4ffrecognizer/include \ 22 $(PV_INCLUDES) 23 24LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 25 26LOCAL_COPY_HEADERS := \ 27 include/pvmp4ffrec_factory.h 28 29include $(BUILD_STATIC_LIBRARY) 30