Commit 02113469 by Junliang Yan Committed by Commit Bot

PPC/s390: Fix GN error on PPC and s390

R=cwallez@chroimium.org, fjhenigman@chromium.org, geofflang@chromium.org, jmadill@chromium.org, ynovikov@chromium.org Change-Id: Iae4cfeb4db83c777d3c9a0a4c115c583113c5b70 Reviewed-on: https://chromium-review.googlesource.com/1087567 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent d1978037
......@@ -28,6 +28,7 @@ Opera Software ASA
The Qt Company Ltd.
Advanced Micro Devices, Inc.
LG Electronics, Inc.
IBM Inc.
Jacek Caban
Mark Callow
......
......@@ -130,3 +130,6 @@ Advanced Micro Devices, Inc.
LG Electronics, Inc.
Jani Hautakangas
IBM Inc.
Junliang Yan
......@@ -26,10 +26,12 @@ data_dir = "angledata"
declare_args() {
if (current_cpu == "arm64" || current_cpu == "x64" ||
current_cpu == "mips64el") {
current_cpu == "mips64el" || current_cpu == "s390x" ||
current_cpu == "ppc64le") {
angle_64bit_current_cpu = true
} else if (current_cpu == "arm" || current_cpu == "x86" ||
current_cpu == "mipsel") {
current_cpu == "mipsel" || current_cpu == "s390" ||
current_cpu == "ppcle") {
angle_64bit_current_cpu = false
} else {
assert(false, "Unknown current CPU: $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