mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
playback: move tests from plugin-dir to tests/examples/playback
This commit is contained in:
parent
59ba05a95d
commit
23cadbae94
14 changed files with 42 additions and 42 deletions
|
@ -951,11 +951,12 @@ tests/check/Makefile
|
|||
tests/examples/Makefile
|
||||
tests/examples/app/Makefile
|
||||
tests/examples/dynamic/Makefile
|
||||
tests/examples/overlay/Makefile
|
||||
tests/examples/seek/Makefile
|
||||
tests/examples/volume/Makefile
|
||||
tests/examples/snapshot/Makefile
|
||||
tests/examples/gio/Makefile
|
||||
tests/examples/overlay/Makefile
|
||||
tests/examples/playback/Makefile
|
||||
tests/examples/seek/Makefile
|
||||
tests/examples/snapshot/Makefile
|
||||
tests/examples/volume/Makefile
|
||||
tests/examples/v4l/Makefile
|
||||
tests/files/Makefile
|
||||
tests/icles/Makefile
|
||||
|
|
9
gst/playback/.gitignore
vendored
9
gst/playback/.gitignore
vendored
|
@ -1,10 +1,3 @@
|
|||
decodetest
|
||||
test
|
||||
test2
|
||||
test3
|
||||
test4
|
||||
test5
|
||||
gstplay-marshal.c
|
||||
gstplay-marshal.h
|
||||
test6
|
||||
test7
|
||||
|
||||
|
|
|
@ -67,34 +67,6 @@ noinst_HEADERS = \
|
|||
gstsubtitleoverlay.h \
|
||||
gststreamsynchronizer.h
|
||||
|
||||
noinst_PROGRAMS = test decodetest test2 test3 test4 test5 test6 test7
|
||||
|
||||
test_LDADD = $(GST_LIBS)
|
||||
test_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test2_LDADD = $(GST_LIBS)
|
||||
test2_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test3_LDADD = $(GST_LIBS)
|
||||
test3_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test4_LDADD = $(GST_LIBS)
|
||||
test4_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test5_LDADD = $(GST_LIBS)
|
||||
test5_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test6_LDADD = $(GST_LIBS)
|
||||
test6_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test7_LDADD = $(GST_LIBS)
|
||||
test7_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
decodetest_LDADD = $(GST_LIBS)
|
||||
decodetest_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
BUILT_SOURCES = $(built_headers) $(built_sources)
|
||||
|
||||
EXTRA_DIST = gstplay-marshal.list
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
|
@ -8,8 +8,8 @@ if USE_GIO
|
|||
GIO_SUBDIRS = gio
|
||||
endif
|
||||
|
||||
SUBDIRS = app $(FT2_SUBDIRS) $(GIO_SUBDIRS) volume dynamic v4l overlay
|
||||
SUBDIRS = app dynamic $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay playback volume v4l
|
||||
|
||||
DIST_SUBDIRS = app seek volume dynamic snapshot gio v4l overlay
|
||||
DIST_SUBDIRS = app dynamic gio overlay playback seek snapshot volume v4l
|
||||
|
||||
include $(top_srcdir)/common/parallel-subdirs.mak
|
||||
|
|
8
tests/examples/playback/.gitignore
vendored
Normal file
8
tests/examples/playback/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
decodetest
|
||||
test
|
||||
test2
|
||||
test3
|
||||
test4
|
||||
test5
|
||||
test6
|
||||
test7
|
26
tests/examples/playback/Makefile.am
Normal file
26
tests/examples/playback/Makefile.am
Normal file
|
@ -0,0 +1,26 @@
|
|||
noinst_PROGRAMS = test decodetest test2 test3 test4 test5 test6 test7
|
||||
|
||||
test_LDADD = $(GST_LIBS)
|
||||
test_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test2_LDADD = $(GST_LIBS)
|
||||
test2_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test3_LDADD = $(GST_LIBS)
|
||||
test3_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test4_LDADD = $(GST_LIBS)
|
||||
test4_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test5_LDADD = $(GST_LIBS)
|
||||
test5_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test6_LDADD = $(GST_LIBS)
|
||||
test6_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
test7_LDADD = $(GST_LIBS)
|
||||
test7_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
decodetest_LDADD = $(GST_LIBS)
|
||||
decodetest_CFLAGS = $(GST_CFLAGS)
|
||||
|
Loading…
Reference in a new issue