OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/nacl/config.gni") |
| 6 |
| 7 # The seccomp-bpf sandbox is only supported on five architectures |
| 8 # currently. |
| 9 # Do not disable seccomp_bpf anywhere without talking to |
| 10 # security@chromium.org! |
| 11 use_seccomp_bpf = |
| 12 (is_linux || is_android) && |
| 13 (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || |
| 14 current_cpu == "arm64" || current_cpu == "mipsel") |
| 15 |
| 16 use_seccomp_bpf = use_seccomp_bpf || is_nacl_nonsfi |
OLD | NEW |