summaryrefslogtreecommitdiff
path: root/subprojects/gst-editing-services/tests
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2022-10-24 14:40:55 -0500
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2022-10-25 08:53:19 +0000
commit2265709574d2596d38fd9d6aead3253b488c48fb (patch)
tree72a488a40f287acda3a121f2f9ba86e5cedd3a09 /subprojects/gst-editing-services/tests
parent366893e9ac5e8a65dfb5435bcc65302e1a36902d (diff)
downloadgstreamer-2265709574d2596d38fd9d6aead3253b488c48fb.tar.gz
build: Fix building ges with tools disabled
If you configure with `tools=disabled` then ges_launch is undefined. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3259>
Diffstat (limited to 'subprojects/gst-editing-services/tests')
-rw-r--r--subprojects/gst-editing-services/tests/check/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/gst-editing-services/tests/check/meson.build b/subprojects/gst-editing-services/tests/check/meson.build
index 34c1344785..267a84b9f2 100644
--- a/subprojects/gst-editing-services/tests/check/meson.build
+++ b/subprojects/gst-editing-services/tests/check/meson.build
@@ -75,7 +75,7 @@ foreach t : ges_tests
endif
endforeach
-if gstvalidate_dep.found()
+if gstvalidate_dep.found() and not get_option('tools').disabled()
# filename: is .validatetest
scenarios = {
'check_video_track_restriction_scale': false,