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