Commit fae5c6c3 authored by Xiaohan Wang's avatar Xiaohan Wang

[libvpx] Fix HighBD config on Windows ARM64

In the last CL, "cpu_arch_full" was set to "arm64-highbd" for Windows
ARM64, which seems not needed because "arm64 windows has it's own folder
for vp9_rtcd.h etc". This CL revert that part of the change so Windows
restores to the previous behavior.

Tbr: jzern@google.com
Bug: 1133301
Change-Id: Iba23fe496841965f491704d5a503b388c1859b7c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2437745Reviewed-by: default avatarXiaohan Wang <xhwang@chromium.org>
Reviewed-by: default avatarJames Zern <jzern@google.com>
Commit-Queue: Xiaohan Wang <xhwang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#811881}
parent c79aa68c
......@@ -29,7 +29,7 @@ if (current_cpu == "x86") {
cpu_arch_full = "arm"
}
} else if (current_cpu == "arm64") {
if (is_chromeos || is_win || is_mac) {
if (is_chromeos || is_mac) {
cpu_arch_full = "arm64-highbd"
} else {
cpu_arch_full = current_cpu
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment