summaryrefslogtreecommitdiffstats
path: root/domx/omx_core/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'domx/omx_core/Android.mk')
-rw-r--r--domx/omx_core/Android.mk20
1 files changed, 20 insertions, 0 deletions
diff --git a/domx/omx_core/Android.mk b/domx/omx_core/Android.mk
new file mode 100644
index 0000000..843ace9
--- /dev/null
+++ b/domx/omx_core/Android.mk
@@ -0,0 +1,20 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ src/OMX_Core.c \
+ src/OMX_Core_Wrapper.c
+
+LOCAL_C_INCLUDES += \
+ $(LOCAL_PATH)/inc \
+ $(LOCAL_PATH)/../mm_osal/inc
+
+LOCAL_SHARED_LIBRARIES := \
+ libdl \
+ libmm_osal
+
+LOCAL_CFLAGS += -DSTATIC_TABLE -D_Android -DCHECK_SECURE_STATE
+LOCAL_MODULE:= libOMX_Core
+LOCAL_MODULE_TAGS:= optional
+include $(BUILD_HEAPTRACKED_SHARED_LIBRARY)