meson: move gstreamer-check-1.0 dependency to tests/check

https://bugzilla.gnome.org/show_bug.cgi?id=773114
This commit is contained in:
Scott D Phillips 2016-10-21 00:47:14 -07:00 committed by Thibault Saunier
parent 91eedfcbea
commit 0555c09607
3 changed files with 6 additions and 3 deletions

View file

@ -113,8 +113,6 @@ gstsdp_dep = dependency('gstreamer-sdp-1.0', version : gst_req,
fallback : ['gst-plugins-base', 'sdp_dep'])
gstrtsp_dep = dependency('gstreamer-rtsp-1.0', version : gst_req,
fallback : ['gst-plugins-base', 'rtsp_dep'])
gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_check_dep'])
gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_controller_dep'])

View file

@ -1,3 +1,6 @@
gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_check_dep'])
# name, condition when to skip the test and extra dependencies
ugly_tests = [
[ 'elements/amrnbenc', not amrnb_dep.found() ],

View file

@ -1 +1,3 @@
subdir('check')
if host_machine.system() != 'windows'
subdir('check')
endif