diff options
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/build_commands.py | 2 | ||||
-rw-r--r-- | python/servo/packages.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 941a1b6fd97..3846cd86877 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -912,7 +912,7 @@ def package_msvc_dlls(servo_exe_dir, target, vcinstalldir, vs_version): "msvcp140.dll", "vcruntime140.dll", ] - if target_arch != "aarch64" and vs_version in ("14.0", "15.0"): + if target_arch != "aarch64" and vs_version in ("14.0", "15.0", "16.0"): msvc_deps += ["api-ms-win-crt-runtime-l1-1-0.dll"] # Check if it's Visual C++ Build Tools or Visual Studio 2015 diff --git a/python/servo/packages.py b/python/servo/packages.py index ca69b105233..b258ae76e2a 100644 --- a/python/servo/packages.py +++ b/python/servo/packages.py @@ -9,6 +9,6 @@ WINDOWS_MSVC = { "ninja": "1.7.1", "nuget": "08-08-2019", "openssl": "111.3.0+1.1.1c-vs2017", - "gstreamer-uwp": "1.16.0.3", + "gstreamer-uwp": "1.16.0.4", "openxr-loader-uwp": "1.0", } |