meson: Add missing gio dep to webrtcbin plugin
authorNirbheek Chauhan <nirbheek@centricular.com>
Wed, 5 Dec 2018 14:28:44 +0000 (19:58 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Wed, 5 Dec 2018 14:28:44 +0000 (19:58 +0530)
It's usually pulled in implicitly through gstsdp_dep, but it's
actually a private dependency there. Fixes a build failure on Windows
with newer Meson.

ext/webrtc/meson.build

index 6eb7ca0..e9e7c11 100644 (file)
@@ -24,7 +24,8 @@ if libnice_dep.found()
     webrtc_sources,
     c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
     include_directories : [configinc],
-    dependencies : [libnice_dep, gstbase_dep, gstsdp_dep, gstapp_dep, gstwebrtc_dep, gstsctp_dep],
+    dependencies : [gio_dep, libnice_dep, gstbase_dep, gstsdp_dep,
+                    gstapp_dep, gstwebrtc_dep, gstsctp_dep],
     install : true,
     install_dir : plugins_install_dir,
   )