summaryrefslogtreecommitdiff
path: root/gst/app
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.d@gmail.com>2011-01-27 17:28:51 +0100
committerEdward Hervey <edward.hervey@collabora.co.uk>2011-04-11 07:23:21 +0200
commit030f639a8e4eb1ab2fcf03301d0a39168e7e3ab7 (patch)
treebe856ddc7540abdd1eb2ff0098050aba8555f698 /gst/app
parentd7413f2a72edb1921482d37e2774a3e21c3e2c49 (diff)
downloadgstreamer-plugins-base-030f639a8e4eb1ab2fcf03301d0a39168e7e3ab7.tar.gz
android: make it ready for androgenizer
Remove the android/ top dir Fixe the Makefile.am to be androgenized To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files. Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
Diffstat (limited to 'gst/app')
-rw-r--r--gst/app/Makefile.am13
1 files changed, 13 insertions, 0 deletions
diff --git a/gst/app/Makefile.am b/gst/app/Makefile.am
index 178ed4e82..217062327 100644
--- a/gst/app/Makefile.am
+++ b/gst/app/Makefile.am
@@ -6,3 +6,16 @@ libgstapp_la_LIBADD = $(GST_BASE_LIBS) $(top_builddir)/gst-libs/gst/app/libgstap
libgstapp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstapp_la_LIBTOOLFLAGS = --tag=disable-static
+Android.mk: Makefile.am $(BUILT_SOURCES)
+ androgenizer \
+ -:PROJECT libgstapp -:SHARED libgstapp \
+ -:TAGS eng debug \
+ -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
+ -:SOURCES $(libgstapp_la_SOURCES) \
+ -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstapp_la_CFLAGS) \
+ -:LDFLAGS $(libgstapp_la_LDFLAGS) \
+ $(libgstapp_la_LIBADD) \
+ -ldl \
+ -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
+ LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
+ > $@