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.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/domx/omx_core/Android.mk b/domx/omx_core/Android.mk
new file mode 100644
index 0000000..c7af2a7
--- /dev/null
+++ b/domx/omx_core/Android.mk
@@ -0,0 +1,23 @@
+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 \
+ liblog \
+ libmm_osal
+
+LOCAL_CFLAGS += -DSTATIC_TABLE -D_Android -DCHECK_SECURE_STATE
+
+LOCAL_MODULE := libOMX_Core
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_SHARED_LIBRARY)