base: make GstQueueArray private to coreelements for now
[platform/upstream/gstreamer.git] / plugins / elements / Makefile.am
index 2d631c7..5e0230c 100644 (file)
@@ -1,63 +1,75 @@
-# FIXME:
-# need to get gstbufferstore.[ch] into its own lib, preferrably 
-# libs/gst/buifferstore
-# This requires building libs/gst before this dir, which we currently don't
-# do.
 
-plugin_LTLIBRARIES = libgstelements.la
+plugin_LTLIBRARIES = libgstcoreelements.la
 
-multifilesrc = gstmultifilesrc.c
-pipefilter = gstpipefilter.c
-
-libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
-libgstelements_la_SOURCES =    \
-       gstbufferstore.c        \
+libgstcoreelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la
+libgstcoreelements_la_SOURCES =        \
        gstcapsfilter.c         \
+       gstelements.c           \
        gstfakesrc.c            \
        gstfakesink.c           \
+       gstfdsrc.c              \
+       gstfdsink.c             \
+       gstfilesink.c           \
        gstfilesrc.c            \
+       gstfunnel.c             \
        gstidentity.c           \
-       gstelements.c           \
+       gstinputselector.c      \
+       gstoutputselector.c     \
+       gstdataqueue.c          \
+       gstmultiqueue.c         \
+       gstqueuearray.c \
+       gstqueue.c              \
+       gstqueue2.c             \
        gsttee.c                \
-       gsttypefindelement.c
+       gsttypefindelement.c    \
+       gstvalve.c
 
-# FIXME 0.9: mentioned by po/POTFILES.in, so we include them here --
-# this is a short-term hack, really we should just decide the fate of
-# these files above, then this will be unnecessary
-EXTRA_DIST =                   \
-       gstaggregator.c         \
-       gstcapsfilter.c         \
-       gstfilesink.c           \
-       gstfdsink.c             \
-       gstfdsrc.c              \
-       gstmd5sink.c            \
-       gstmultifilesrc.c       \
-       gstpipefilter.c         \
-       gstshaper.c             \
-       gststatistics.c
-
-
-libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
-libgstelements_la_LIBADD = $(GST_OBJ_LIBS) \
-       $(top_builddir)/gst/base/libgstbase-@GST_MAJORMINOR@.la \
-       $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
-libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
+libgstcoreelements_la_LIBADD = \
+       $(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
+       $(GST_OBJ_LIBS)
+libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstcoreelements_la_LIBTOOLFLAGS = --tag=disable-static
 
 noinst_HEADERS =               \
-       gstaggregator.h         \
-       gstbufferstore.h        \
+       gstcapsfilter.h         \
        gstfakesink.h           \
        gstfakesrc.h            \
-       gstfdsink.h             \
        gstfdsrc.h              \
+       gstfdsink.h             \
        gstfilesink.h           \
        gstfilesrc.h            \
+       gstfunnel.h             \
        gstidentity.h           \
-       gstmd5sink.h            \
-       gstmultifilesrc.h       \
-       gstpipefilter.h         \
-       gstshaper.h             \
-       gststatistics.h         \
+       gstinputselector.h      \
+       gstoutputselector.h     \
+       gstdataqueue.h          \
+       gstmultiqueue.h         \
+       gstqueuearray.h \
+       gstqueue.h              \
+       gstqueue2.h             \
        gsttee.h                \
-       gsttypefindelement.h
+       gsttypefindelement.h    \
+       gstvalve.h
+
+EXTRA_DIST = gstfdsrc.c \
+            gstfdsink.c
+
+
+CLEANFILES = *.gcno *.gcda *.gcov *.gcov.out
+
+%.c.gcov: .libs/libgstcoreelements_la-%.gcda %.c
+       $(GCOV) -b -f -o $^ > $@.out
+
+gcov: $(libgstcoreelements_la_SOURCES:=.gcov)
 
+Android.mk: Makefile.am
+       androgenizer -:PROJECT gstreamer -:SHARED libgstcoreelements -:TAGS eng debug \
+        -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
+        -:SOURCES $(libgstcoreelements_la_SOURCES) \
+        -:CFLAGS $(DEFS) $(libgstcoreelements_la_CFLAGS) \
+        -:LDFLAGS $(libgstcoreelements_la_LDFLAGS) \
+                   $(libgstcoreelements_la_LIBADD) \
+        -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
+                      LOCAL_MODULE_PATH:=$$\(TARGET_OUT\)/lib/gstreamer-@GST_API_VERSION@ \
+       > $@