blob: 9081f7492eb6105b20f037f4d0a63f362f25d740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
################################################
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_PRELINK_MODULE := false
LOCAL_SRC_FILES := \
MessageQueue.cpp \
Semaphore.cpp \
ErrorUtils.cpp
LOCAL_SHARED_LIBRARIES := \
libdl \
libui \
libbinder \
libutils \
libcutils \
liblog
LOCAL_C_INCLUDES += \
bionic/libc/include
ifneq ($(TI_CUSTOM_DOMX_PATH),)
LOCAL_C_INCLUDES += \
$(TI_CUSTOM_DOMX_PATH)/omx_core/inc \
$(TI_CUSTOM_DOMX_PATH)/mm_osal/inc
else
LOCAL_C_INCLUDES += \
hardware/ti/omap4xxx/domx/omx_core/inc \
hardware/ti/omap4xxx/domx/mm_osal/inc
endif
LOCAL_CFLAGS += -fno-short-enums
LOCAL_MODULE := libtiutils_custom
LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)
|