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