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