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.
23 lines
581 B
23 lines
581 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libuapi_memory
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := iapi_memory.c \
|
|
mpi_memory.c \
|
|
memory_basic.c \
|
|
hal/v100/drv_ion_hal_v100.c \
|
|
hal/v200/drv_ion_hal_v200.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/memory/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/platform/secure_c/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_securec
|
|
|
|
include $(BUILD_LINUX_LIBRARY)
|
|
|