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