diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-03-27 23:58:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-27 23:58:11 -0400 |
commit | dc55409757f4e61fb838d33a836747d6ed836e46 (patch) | |
tree | 1dc72263550d910006918a5e6b66376ecee745ed /python/servo | |
parent | e420c8cf0606c6870502f203f17b597e39b8ab5a (diff) | |
download | servo-dc55409757f4e61fb838d33a836747d6ed836e46.tar.gz servo-dc55409757f4e61fb838d33a836747d6ed836e46.zip |
More gstreamer 1.15 changes.
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/build_commands.py | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index bc2239ae5c6..1e99b65d989 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -620,26 +620,26 @@ class MachCommands(CommandBase): status = 1 gst_dlls = [ ["libffi-7.dll", "ffi-7.dll"], - "libgio-2.0-0.dll", - "libglib-2.0-0.dll", - "libgmodule-2.0-0.dll", - "libgobject-2.0-0.dll", - "libgstapp-1.0-0.dll", - "libgstaudio-1.0-0.dll", - "libgstbase-1.0-0.dll", - "libgstgl-1.0-0.dll", - "libgstpbutils-1.0-0.dll", - "libgstplayer-1.0-0.dll", - "libgstreamer-1.0-0.dll", - "libgstrtp-1.0-0.dll", - "libgstsdp-1.0-0.dll", - "libgsttag-1.0-0.dll", - "libgstvideo-1.0-0.dll", - "libgstwebrtc-1.0-0.dll", - "libintl-8.dll", - "liborc-0.4-0.dll", - "libwinpthread-1.dll", - "libz.dll", + ["libgio-2.0-0.dll", "gio-2.0-0.dll"], + ["libglib-2.0-0.dll", "glib-2.0-0.dll"], + ["libgmodule-2.0-0.dll", "gmodule-2.0-0.dll"], + ["libgobject-2.0-0.dll", "gobject-2.0-0.dll"], + ["libgstapp-1.0-0.dll", "gstapp-1.0-0.dll"], + ["libgstaudio-1.0-0.dll", "gstaudio-1.0-0.dll"], + ["libgstbase-1.0-0.dll", "gstbase-1.0-0.dll"], + ["libgstgl-1.0-0.dll", "gstgl-1.0-0.dll"], + ["libgstpbutils-1.0-0.dll", "gstpbutils-1.0-0.dll"], + ["libgstplayer-1.0-0.dll", "gstplayer-1.0-0.dll"], + ["libgstreamer-1.0-0.dll", "gstreamer-1.0-0.dll"], + ["libgstrtp-1.0-0.dll", "gstrtp-1.0-0.dll"], + ["libgstsdp-1.0-0.dll", "gstsdp-1.0-0.dll"], + ["libgsttag-1.0-0.dll", "gsttag-1.0-0.dll"], + ["libgstvideo-1.0-0.dll", "gstvideo-1.0-0.dll"], + ["libgstwebrtc-1.0-0.dll", "gstwebrtc-1.0-0.dll"], + ["libintl-8.dll", "intl-8.dll"], + ["liborc-0.4-0.dll", "orc-0.4-0.dll"], + ["libwinpthread-1.dll", "winpthread-1.dll"], + ["libz.dll", "libz-1.dll"] ] if gst_root: for gst_lib in gst_dlls: @@ -647,7 +647,7 @@ class MachCommands(CommandBase): gst_lib = [gst_lib] for lib in gst_lib: try: - shutil.copy(path.join(gst_root, "bin", gst_lib), + shutil.copy(path.join(gst_root, "bin", lib), servo_exe_dir) break except: |