| Index: sandbox/linux/seccomp-bpf/bpf_tests.h
|
| diff --git a/sandbox/linux/seccomp-bpf/bpf_tests.h b/sandbox/linux/seccomp-bpf/bpf_tests.h
|
| index 13ccf7d61acd401cd4a1a162d8ee15767f361a29..a1984d654ee6dd1499778d97a23c7b36bcdfdb43 100644
|
| --- a/sandbox/linux/seccomp-bpf/bpf_tests.h
|
| +++ b/sandbox/linux/seccomp-bpf/bpf_tests.h
|
| @@ -10,6 +10,7 @@
|
| #include <sys/types.h>
|
|
|
| #include "build/build_config.h"
|
| +#include "build/build_config_functions.h"
|
| #include "sandbox/linux/tests/unit_tests.h"
|
| #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h"
|
|
|
| @@ -92,7 +93,8 @@ class BpfTests : public UnitTests {
|
| // Android, ARM and Valgrind are the three only configurations where we
|
| // accept not having kernel BPF support.
|
| // TODO(jln): remote ARM from this list when possible (crbug.com/243478).
|
| - if (!IsAndroid() && !IsRunningOnValgrind() && !IsArchitectureArm()) {
|
| + if (!build::IsAndroid() && !IsRunningOnValgrind() &&
|
| + !build::IsArchitectureARM()) {
|
| const bool seccomp_bpf_is_supported = false;
|
| BPF_ASSERT(seccomp_bpf_is_supported);
|
| }
|
|
|