Chromium Code Reviews| Index: build/config/features.gni |
| diff --git a/build/config/features.gni b/build/config/features.gni |
| index a0db6e689796725f7a9d09f9adfd9aade72559e8..539a40580fc24b5dd73807f7e72d8c419169ac9f 100644 |
| --- a/build/config/features.gni |
| +++ b/build/config/features.gni |
| @@ -47,3 +47,12 @@ if (is_android) { |
| } else { |
| enable_printing = 1 |
| } |
| + |
| +# The seccomp-bpf sandbox is only supported on three architectures |
| +# currently. |
| +# Do not disable seccomp_bpf anywhere without talking to |
| +# security@chromium.org! |
| +use_seccomp_bpf = is_linux || is_android && |
|
scottmg
2014/05/20 19:06:02
parens around (linux | android) would be easier to
|
| + (cpu_arch == "x86" || cpu_arch == "x64" || cpu_arch == "arm") |
| + |
| +enable_webrtc = !is_ios |