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

Unified Diff: build/config/features.gni

Issue 795053004: MIPSEL supports seccomp_bpf so use it with GN build as well (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 ac48896601a78e999142b392c24dd3f77cf1b201..3811e27cfe733ec6c41fd70006015cd729ac69bf 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -74,8 +74,9 @@ enable_print_preview = !is_android
# currently.
# Do not disable seccomp_bpf anywhere without talking to
# security@chromium.org!
-use_seccomp_bpf = (is_linux || is_android) &&
- (cpu_arch == "x86" || cpu_arch == "x64" || cpu_arch == "arm")
+use_seccomp_bpf =
+ (is_linux || is_android) && (cpu_arch == "x86" || cpu_arch == "x64" ||
+ cpu_arch == "arm" || cpu_arch == "mipsel")
# Enable notifications everywhere except iOS.
enable_notifications = !is_ios
« 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