summaryrefslogtreecommitdiff
path: root/chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh')
-rwxr-xr-xchromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh b/chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh
index ae2b1cd4c8b..84515ecff4e 100755
--- a/chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh
+++ b/chromium/third_party/libvpx/source/libvpx/build/make/gen_msvs_vcxproj.sh
@@ -312,15 +312,15 @@ generate_vcxproj() {
tag_content ApplicationType "Windows Store"
tag_content ApplicationTypeRevision 8.1
fi
- if [ $vs_ver -eq 15 ] && [ "${platforms[0]}" = "ARM64" ]; then
+ if [ "${platforms[0]}" = "ARM64" ]; then
# Require the first Visual Studio version to have ARM64 support.
tag_content MinimumVisualStudioVersion 15.9
- # Require a Windows SDK that has ARM64 support rather than the
- # default of 8.1.
+ fi
+ if [ $vs_ver -eq 15 ] && [ "${platforms[0]}" = "ARM64" ]; then
# Since VS 15 does not have a 'use latest SDK version' facility,
- # set WindowsTargetPlatformVersion to the first official SDK
- # version to have ARM64 support.
- tag_content WindowsTargetPlatformVersion 10.0.17134.0
+ # specifically require the contemporaneous SDK with official ARM64
+ # support.
+ tag_content WindowsTargetPlatformVersion 10.0.17763.0
fi
close_tag PropertyGroup