meson: Add missing gio dep to webrtcbin plugin

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.
This commit is contained in:
Nirbheek Chauhan 2018-12-05 19:58:44 +05:30
parent 936f89a0d5
commit 9504fc7174

View 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,
)