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.
36 lines
1.2 KiB
36 lines
1.2 KiB
4 months ago
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
LOCAL_MODULE := libuapi_demux
|
||
|
|
||
|
LOCAL_MULTILIB := both
|
||
|
LOCAL_BUILD_STATIC := true
|
||
|
|
||
|
LOCAL_SRC_FILES := *.c
|
||
|
|
||
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/include/video \
|
||
|
-Ivendor/huanglong/uapi/include/generic \
|
||
|
-Ivendor/huanglong/uapi/include/media \
|
||
|
-Ivendor/platform/secure_c/include \
|
||
|
-Ivendor/huanglong/linux/include/generic \
|
||
|
-Ivendor/huanglong/uapi/common/include \
|
||
|
-Ivendor/huanglong/uapi/memory/include \
|
||
|
-Ivendor/huanglong/uapi/demux/include \
|
||
|
-Ivendor/huanglong/uapi/ssm/include \
|
||
|
-Ivendor/huanglong/linux/include/demux \
|
||
|
-Ivendor/huanglong/linux/include/ssm \
|
||
|
-Ivendor/huanglong/linux/include/common
|
||
|
|
||
|
LOCAL_CFLAGS += -DLOG_TAG=libuapi_demux \
|
||
|
-DCONFIG_SOCT_LOG_SUPPORT \
|
||
|
-Wno-sign-compare \
|
||
|
-Wno-error=shadow -Wno-type-limits
|
||
|
|
||
|
LOCAL_LDFLAGS := -lpthread
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := libuapi_securec \
|
||
|
libuapi_common \
|
||
|
libuapi_ssm \
|
||
|
libuapi_memory
|
||
|
|
||
|
include $(BUILD_LINUX_LIBRARY)
|