You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
include $(SDK_DIR)/Android.def
|
|
|
|
LOCAL_MODULE := libuapi_tooldbg
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MULTILIB := both
|
|
|
|
LOCAL_C_INCLUDES := $(UNF_DIR) \
|
|
$(USR_DIR)/include \
|
|
$(USR_DIR)/securec \
|
|
$(DRV_DIR)/include \
|
|
$(DRV_DIR)/common/include \
|
|
$(TOP)/system/core/include \
|
|
$(USR_DIR)/dbg/include
|
|
|
|
LOCAL_SRC_FILES := iapi_mdbg.c \
|
|
mpi_mdbg.c \
|
|
mpi_dbg_ir.c \
|
|
mpi_dbg_gpio.c \
|
|
mpi_dbg_i2c.c \
|
|
mpi_dbg_panel.c \
|
|
mpi_dbg_pq.c \
|
|
mpi_dbg_aq.c \
|
|
iapi_dbg_aq.c
|
|
|
|
LOCAL_CFLAGS := $(CFG_SOCT_CFLAGS)
|
|
LOCAL_CFLAGS += -DLOG_TAG=\"$(LOCAL_MODULE)\"
|
|
LOCAL_CFLAGS += -Wlong-long -Wformat -Wpointer-arith
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils libuapi_common libuapi_memory libuapi_securec libuapi_peri libuapi_pq libuapi_panel libuapi_vout libuapi_vin
|
|
|
|
include $(BUILD_SHARED_LIBRARY) |