aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorUK992 <urbankrajnc92@gmail.com>2019-02-02 13:36:12 +0100
committerUK992 <urbankrajnc92@gmail.com>2019-02-02 13:36:12 +0100
commitac8ac39ef3730569ba822f360dfc065e519eca68 (patch)
tree8efec1260ef85fc18dde1c0152bb6b0749b78839 /python/servo/build_commands.py
parent363073568e492ba51d5fefc899ff0ceed074f707 (diff)
downloadservo-ac8ac39ef3730569ba822f360dfc065e519eca68.tar.gz
servo-ac8ac39ef3730569ba822f360dfc065e519eca68.zip
Alphabetically sort GStreamer dlls
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 9abd2e05218..52e0f9a7568 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -618,22 +618,22 @@ class MachCommands(CommandBase):
print("Could not found GStreamer installation directory.")
status = 1
gst_dlls = [
- "libz.dll",
- "libintl-8.dll",
- "liborc-0.4-0.dll",
- "libwinpthread-1.dll",
"libffi-7.dll",
- "libgobject-2.0-0.dll",
"libglib-2.0-0.dll",
"libgmodule-2.0-0.dll",
- "libgstreamer-1.0-0.dll",
- "libgstplayer-1.0-0.dll",
+ "libgobject-2.0-0.dll",
"libgstapp-1.0-0.dll",
"libgstaudio-1.0-0.dll",
- "libgstvideo-1.0-0.dll",
- "libgsttag-1.0-0.dll",
"libgstbase-1.0-0.dll",
"libgstpbutils-1.0-0.dll",
+ "libgstplayer-1.0-0.dll",
+ "libgstreamer-1.0-0.dll",
+ "libgsttag-1.0-0.dll",
+ "libgstvideo-1.0-0.dll",
+ "libintl-8.dll",
+ "liborc-0.4-0.dll",
+ "libwinpthread-1.dll",
+ "libz.dll"
]
if gst_root:
for gst_lib in gst_dlls: