Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / android / typefindfunctions.mk
1 LOCAL_PATH:= $(call my-dir)
2
3 include $(CLEAR_VARS)
4
5 LOCAL_ARM_MODE := arm
6
7 typefindfunctions_LOCAL_SRC_FILES:= \
8         gst/typefind/gsttypefindfunctions.c
9
10 LOCAL_SRC_FILES:= $(addprefix ../,$(typefindfunctions_LOCAL_SRC_FILES))
11
12 LOCAL_SHARED_LIBRARIES := \
13     libgstreamer-0.11       \
14     libgstbase-0.11         \
15     libgstpbutils-0.11      \
16     libglib-2.0             \
17     libgthread-2.0          \
18     libgmodule-2.0          \
19     libgobject-2.0
20
21 LOCAL_MODULE:= libgsttypefindfunctions
22
23 LOCAL_CFLAGS := -DHAVE_CONFIG_H  -DGSTREAMER_BUILT_FOR_ANDROID \
24         $(GST_PLUGINS_BASE_CFLAGS)
25 #
26 # define LOCAL_PRELINK_MODULE to false to not use pre-link map
27 #
28 LOCAL_PRELINK_MODULE := false
29
30 #It's a gstreamer plugins, and it must be installed on ..../lib/gstreamer-0.11
31 LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/gstreamer-0.11
32 LOCAL_MODULE_TAGS := optional
33
34 include $(BUILD_SHARED_LIBRARY)