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