aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/gstreamer.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2020-11-13 11:55:56 -0500
committerJosh Matthews <josh@joshmatthews.net>2020-11-13 11:55:56 -0500
commit19b9314b485d03fe68f1fa0fc060a4e196a7afc1 (patch)
treeb166f5fa7c6e83152dafbc245130f02e203a5b2e /python/servo/gstreamer.py
parent5488790be68aa03c603954f648a12b3d26139b0c (diff)
downloadservo-19b9314b485d03fe68f1fa0fc060a4e196a7afc1.tar.gz
servo-19b9314b485d03fe68f1fa0fc060a4e196a7afc1.zip
Fix gstreamer packaging on mac.
Diffstat (limited to 'python/servo/gstreamer.py')
-rw-r--r--python/servo/gstreamer.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/python/servo/gstreamer.py b/python/servo/gstreamer.py
index 2e2e66cba32..5a810711770 100644
--- a/python/servo/gstreamer.py
+++ b/python/servo/gstreamer.py
@@ -80,7 +80,9 @@ WINDOWS_PLUGINS = [
]
MACOS_PLUGINS = [
- ("gstapplemedia", "gst-plugins-bad"),
+ # Temporarily disabled until CI is using Mojave.
+ # https://github.com/servo/saltfs/issues/1011
+ # ("gstapplemedia", "gst-plugins-bad"),
("gstosxaudio", "gst-plugins-good"),
("gstosxvideo", "gst-plugins-good"),
]
@@ -140,10 +142,10 @@ def macos_plugins():
path,
"lib",
"gstreamer-1.0",
- "lib" + name + ".so"
+ "lib" + name + ".dylib"
) for name, path in GSTREAMER_PLUGINS + MACOS_PLUGINS
] + [
- os.path.join(macos_libnice(), "gstreamer-1.0", "libgstnice.so"),
+ os.path.join(macos_libnice(), "gstreamer-1.0", "libgstnice.dylib"),
]