1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 6 7 8 9 10LOCAL_CFLAGS := $(PV_CFLAGS) 11 12 13 14LOCAL_STATIC_LIBRARIES := 15 16LOCAL_SHARED_LIBRARIES := 17 18LOCAL_C_INCLUDES := \ 19 $(PV_TOP)/engines/common/src \ 20 $(PV_TOP)/engines/common/include \ 21 $(PV_INCLUDES) 22 23LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 24 25LOCAL_COPY_HEADERS := \ 26 include/pv_common_types.h \ 27 include/pv_config_interface.h \ 28 include/pv_engine_observer.h \ 29 include/pv_engine_observer_message.h \ 30 include/pv_engine_types.h \ 31 include/pv_interface_cmd_message.h 32 33include $(BUILD_COPY_HEADERS) 34