| Index: build/common.gypi
|
| diff --git a/build/common.gypi b/build/common.gypi
|
| index 6f62a0f4610bcaf4059ab914be9f052f51886ad7..1a6d73286076aeee6346f2f32743634474ff8ca1 100644
|
| --- a/build/common.gypi
|
| +++ b/build/common.gypi
|
| @@ -2297,13 +2297,14 @@
|
| 'host_cxx': '<!(which g++)',
|
| }],
|
|
|
| - # The seccomp-bpf sandbox is only supported on four architectures
|
| + # The seccomp-bpf sandbox is only supported on five architectures
|
| # currently.
|
| # Do not disable seccomp_bpf anywhere without talking to
|
| # security@chromium.org!
|
| ['((OS=="linux" or OS=="android") and '
|
| '(target_arch=="ia32" or target_arch=="x64" or '
|
| - 'target_arch=="arm" or target_arch=="mipsel"))', {
|
| + 'target_arch=="arm" or target_arch=="mipsel" or '
|
| + 'target_arch=="arm64"))', {
|
| 'use_seccomp_bpf%': 1,
|
| }, {
|
| 'use_seccomp_bpf%': 0,
|
|
|