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.
32 lines
1.0 KiB
32 lines
1.0 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libuapi_venc
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := *.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/platform/secure_c/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/huanglong/linux/include/venc \
|
|
-Ivendor/huanglong/linux/include/video \
|
|
-Ivendor/huanglong/uapi/include/media \
|
|
-Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/memory/include \
|
|
-Ivendor/huanglong/uapi/venc/include \
|
|
-Ivendor/huanglong/uapi/ssm/include
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=libuapi_venc \
|
|
-DCONFIG_SOCT_LOG_SUPPORT
|
|
|
|
LOCAL_LDFLAGS := -lpthread -ldl
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_securec \
|
|
libuapi_common \
|
|
libuapi_memory \
|
|
libuapi_ssm
|
|
|
|
include $(BUILD_LINUX_LIBRARY) |