summaryrefslogtreecommitdiffstats
path: root/libtiutils/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'libtiutils/Android.mk')
-rwxr-xr-xlibtiutils/Android.mk35
1 files changed, 35 insertions, 0 deletions
diff --git a/libtiutils/Android.mk b/libtiutils/Android.mk
new file mode 100755
index 0000000..7312222
--- /dev/null
+++ b/libtiutils/Android.mk
@@ -0,0 +1,35 @@
+################################################
+
+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
+
+LOCAL_C_INCLUDES += \
+ kernel/android-2.6.29/include \
+ frameworks/base/include/utils \
+ bionic/libc/include \
+ hardware/ti/omap4xxx/domx/omx_core/inc \
+ hardware/ti/omap4xxx/domx/mm_osal/inc
+
+LOCAL_CFLAGS += -fno-short-enums
+
+# LOCAL_CFLAGS +=
+
+LOCAL_MODULE:= libtiutils
+LOCAL_MODULE_TAGS:= optional
+
+include $(BUILD_HEAPTRACKED_SHARED_LIBRARY)