| Index: build/config/features.gni
|
| diff --git a/build/config/features.gni b/build/config/features.gni
|
| index a0db6e689796725f7a9d09f9adfd9aade72559e8..f4ec0f85dc5ad73be8cb925c1aab8b01dc5733f7 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) &&
|
| + (cpu_arch == "x86" || cpu_arch == "x64" || cpu_arch == "arm")
|
| +
|
| +enable_webrtc = !is_ios
|
|
|