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.
38 lines
1.2 KiB
38 lines
1.2 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libuapi_vo
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := mpi_disp_tran.c \
|
|
mpi_disp.c \
|
|
mpi_win.c \
|
|
iapi_disp.c \
|
|
iapi_win.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/include/media \
|
|
-Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/vo/include \
|
|
-Ivendor/huanglong/uapi/rm/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/huanglong/linux/include/video \
|
|
-Ivendor/huanglong/linux/include/vo \
|
|
-Ivendor/huanglong/linux/include/rm \
|
|
-Ivendor/huanglong/linux/include/memc \
|
|
-Ivendor/platform/secure_c/include \
|
|
-Ivendor/huanglong/linux/include/common
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=libuapi_vo \
|
|
-DCONFIG_SOCT_LOG_SUPPORT \
|
|
-Wno-error=shadow -Wno-error=unused-parameter
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_rm \
|
|
libuapi_securec \
|
|
libuapi_common
|
|
|
|
include $(BUILD_LINUX_LIBRARY)
|
|
|