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

Unified Diff: build/config/features.gni

Issue 1344803002: [MIPS] GN: Disable NaCl for MIPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/features.gni
diff --git a/build/config/features.gni b/build/config/features.gni
index db4fa481cb5f917f3f3177406b9abd788aedeaa8..83a80f1d4d0b363b06e9a8e68cd373ba8a82a996 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -37,7 +37,8 @@ declare_args() {
# the commented out logic.
# Eventually we want this to be:
# enable_nacl = !is_ios && !is_android
- enable_nacl = (is_linux && !is_chromeos) || is_nacl
+ enable_nacl =
+ ((is_linux && !is_chromeos) || is_nacl) && current_cpu != "mipsel"
enable_nacl_untrusted = enable_nacl
enable_pnacl = enable_nacl_untrusted
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698