Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Unified Diff: build/config/ui.gni

Issue 2815453004: For building v8 using gn on aix_ppc64, linux_s390x and linux_ppc64. (Closed)
Patch Set: rebased, addressed reviews, added host_byteorder.gni. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/config/ui.gni
diff --git a/build/config/ui.gni b/build/config/ui.gni
index aed71b47c66896f914a50cb438e63390c155140d..50355e84abab9edf52b7096ff7b8a838f70e8782 100644
--- a/build/config/ui.gni
+++ b/build/config/ui.gni
@@ -34,7 +34,8 @@ declare_args() {
use_aura = is_win || is_linux
# Whether we should use glib, a low level C utility library.
- use_glib = is_linux
+ use_glib = is_linux && (current_cpu != "s390x" && current_cpu != "s390" &&
+ current_cpu != "ppc64" && current_cpu != "ppc")
Dirk Pranke 2017/04/25 01:42:48 change to `is_linux && !is_power_or_z`, right?
rayb 2017/04/25 17:28:48 Done.
}
declare_args() {

Powered by Google App Engine
This is Rietveld 408576698