mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
26 lines
648 B
Meson
26 lines
648 B
Meson
debugutilsbad_sources = [
|
|
'debugutilsbad.c',
|
|
'fpsdisplaysink.c',
|
|
'gstchecksumsink.c',
|
|
'gstchopmydata.c',
|
|
'gstclockselect.c',
|
|
'gstcompare.c',
|
|
'gstdebugspy.c',
|
|
'gsterrorignore.c',
|
|
'gstfakeaudiosink.c',
|
|
'gstfakesinkutils.c',
|
|
'gstfakevideosink.c',
|
|
'gsttestsrcbin.c',
|
|
'gstvideocodectestsink.c',
|
|
'gstwatchdog.c',
|
|
]
|
|
|
|
gstdebugutilsbad = library('gstdebugutilsbad',
|
|
debugutilsbad_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstnet_dep, gstaudio_dep, gio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstdebugutilsbad]
|