From 021134691e64915e0c6ac00b0a06e5d05cd49618 Mon Sep 17 00:00:00 2001 From: Junliang Yan Date: Tue, 5 Jun 2018 14:31:56 -0400 Subject: [PATCH] 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 Reviewed-by: Jamie Madill --- AUTHORS | 1 + CONTRIBUTORS | 3 +++ gni/angle.gni | 6 ++++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6aed35a04ce..cbe7657c5db 100644 --- a/AUTHORS +++ b/AUTHORS @@ -28,6 +28,7 @@ Opera Software ASA The Qt Company Ltd. Advanced Micro Devices, Inc. LG Electronics, Inc. +IBM Inc. Jacek Caban Mark Callow diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 7f8313c71bc..0ae5a00c2fc 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -130,3 +130,6 @@ Advanced Micro Devices, Inc. LG Electronics, Inc. Jani Hautakangas + +IBM Inc. + Junliang Yan diff --git a/gni/angle.gni b/gni/angle.gni index 95e55b23945..f851d510824 100644 --- a/gni/angle.gni +++ b/gni/angle.gni @@ -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")