diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-01-03 14:06:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-03 13:06:08 +0000 |
commit | 0dbba9b6ffe0507011337c27c2709f6c4cebe1c0 (patch) | |
tree | 4acbdd5613ab37d3756fa7625575994965168738 /python/servo/platform/windows.py | |
parent | 230e00c31350095b078f195152c4c37bf57900bd (diff) | |
download | servo-0dbba9b6ffe0507011337c27c2709f6c4cebe1c0.tar.gz servo-0dbba9b6ffe0507011337c27c2709f6c4cebe1c0.zip |
Download Windows GStreamer dependencies from GitHub (#30973)
This works around issues where the server is rejecting our requests and
should be more reliable.
Diffstat (limited to 'python/servo/platform/windows.py')
-rw-r--r-- | python/servo/platform/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/platform/windows.py b/python/servo/platform/windows.py index 7751f7e572f..904e5a73067 100644 --- a/python/servo/platform/windows.py +++ b/python/servo/platform/windows.py @@ -22,7 +22,7 @@ DEPENDENCIES = { "moztools": "4.0", } -URL_BASE = "https://gstreamer.freedesktop.org/data/pkg/windows/1.16.0/" +URL_BASE = "https://github.com/servo/servo-build-deps/releases/download/msvc-deps/" GSTREAMER_URL = f"{URL_BASE}/gstreamer-1.0-msvc-x86_64-1.16.0.msi" GSTREAMER_DEVEL_URL = f"{URL_BASE}/gstreamer-1.0-devel-msvc-x86_64-1.16.0.msi" DEPENDENCIES_DIR = os.path.join(util.get_target_dir(), "dependencies") |