GNOME Bugzilla – Bug 782962
tests: start porting to meson
Last modified: 2017-06-07 18:50:49 UTC
Incomplete port, to get the ball rolling
Created attachment 352369 [details] [review] tests: start porting to meson
Comment on attachment 352369 [details] [review] tests: start porting to meson So weird. I could swear I'd done this already. In any case, please push if it works for you :)
Review of attachment 352369 [details] [review]: Apart from that go. ::: tests/check/meson.build @@ +72,3 @@ +# case where GStreamer is another subproject here. +if not meson.is_subproject() + pkgconfig = find_program('pkg-config') Please use: if gst_dep.type_name() == 'pkgconfig' pluginsdirs = [gst_dep.get_pkgconfig_variable('pluginsdir')] + [gst_base_dep.get_pkgconfig_variable('pluginsdir')] endif or so (see https://phabricator.freedesktop.org/diffusion/GSTBASE/browse/master/tests/check/meson.build;398a6a2a1b0f781d261a91aa967c52b08d894098$98)
Yep, it passes, though the camerabin test takes 1 minute to do so here, not sure why Attachment 352369 [details] pushed as 794ada0 - tests: start porting to meson