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.
40 lines
1.4 KiB
40 lines
1.4 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libuapi_hdmitx
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := iapi_hdmitx.c \
|
|
mpi_hdmitx.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/platform/secure_c/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/huanglong/linux/include/hdmitx \
|
|
-Ivendor/huanglong/linux/include/common \
|
|
-Ivendor/huanglong/linux/include/klad \
|
|
-Ivendor/huanglong/linux/include/cipher \
|
|
-Ivendor/huanglong/linux/include/keyslot \
|
|
-Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/include/media \
|
|
-Ivendor/huanglong/uapi/include/cec \
|
|
-Ivendor/huanglong/uapi/klad/include \
|
|
-Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/memory/include \
|
|
-Ivendor/huanglong/uapi/hdmitx/include \
|
|
-Ivendor/huanglong/uapi/cipher/include \
|
|
-Ivendor/huanglong/uapi/keyslot/include
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=libuapi_hdmitx \
|
|
-Wno-error=shadow -Wno-error=type-limits
|
|
|
|
LOCAL_LDFLAGS := -lpthread
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_securec \
|
|
libuapi_common \
|
|
libuapi_klad \
|
|
libuapi_cipher \
|
|
libuapi_keyslot
|
|
|
|
include $(BUILD_LINUX_LIBRARY) |