From 60ac6d0883f02065eb9d2b0d7e7634b36fca4b95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 15 Apr 2024 10:51:03 +0100 Subject: [PATCH] tests: fix possible libscpp build failure in gst-plugins-bad ../subprojects/gst-plugins-bad/tests/check/libs/gstlibscpp.cc:41: fatal error: gst/mpegts/gstmpegts-enumtypes.h: No such file or directory Could only pass the needed deps to the libscpp test, but gets messier to maintain, so let's at it for consistency. Part-of: --- subprojects/gst-plugins-bad/tests/check/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/tests/check/meson.build b/subprojects/gst-plugins-bad/tests/check/meson.build index 21e6db6fd7..248aea0ca4 100644 --- a/subprojects/gst-plugins-bad/tests/check/meson.build +++ b/subprojects/gst-plugins-bad/tests/check/meson.build @@ -185,8 +185,10 @@ test_defines = [ '-DGST_USE_UNSTABLE_API', ] -test_deps = [gst_dep, gstapp_dep, gstbase_dep, - gstbasecamerabin_dep, gstphotography_dep, +test_deps = [gst_dep, gstapp_dep, gstbase_dep, gstbadaudio_dep, + gstbasecamerabin_dep, gstphotography_dep, gstwebrtc_dep, + gstmpegts_dep, gstmse_dep, gstplay_dep, gstplayer_dep, + gstanalytics_dep, gstinsertbin_dep, gst_transcoder_dep, gstpbutils_dep, gstcontroller_dep, gstaudio_dep, gstvideo_dep, gstrtp_dep, gsturidownloader_dep, gstcheck_dep, gio_dep, gsttag_dep]