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.
25 lines
761 B
25 lines
761 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libuapi_gfx2d
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := *.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/gfx2d/include \
|
|
-Ivendor/huanglong/uapi/gfx2d/source/include \
|
|
-Ivendor/huanglong/uapi/memory/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/huanglong/linux/include/gfx2d \
|
|
-Ivendor/huanglong/linux/include/tde \
|
|
-Ivendor/platform/secure_c/include
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=libuapi_gfx2d \
|
|
-DDCONFIG_SOCT_LOG_SUPPORT \
|
|
-Wno-old-style-declaration
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_securec
|
|
|
|
include $(BUILD_LINUX_LIBRARY) |