| Index: sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc
|
| diff --git a/sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc b/sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc
|
| index 97811c1e47aa0ba1f0b1dd6dc63dc82767ebc61b..d98405de5791bdfa468df771dd4def65a000bd6c 100644
|
| --- a/sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc
|
| +++ b/sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc
|
| @@ -22,12 +22,12 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| -#include "build/build_config_functions.h"
|
| #include "sandbox/linux/seccomp-bpf/bpf_tests.h"
|
| #include "sandbox/linux/seccomp-bpf/syscall.h"
|
| #include "sandbox/linux/seccomp-bpf/trap.h"
|
| #include "sandbox/linux/seccomp-bpf/verifier.h"
|
| #include "sandbox/linux/services/broker_process.h"
|
| +#include "sandbox/linux/services/build_config_functions.h"
|
| #include "sandbox/linux/services/linux_syscalls.h"
|
| #include "sandbox/linux/tests/unit_tests.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -260,7 +260,7 @@ BPF_TEST(SandboxBpf, ErrnoTest, ErrnoTestPolicy) {
|
| // On Android, errno is only supported up to 255, otherwise errno
|
| // processing is skipped.
|
| // We work around this (crbug.com/181647).
|
| - if (build::IsAndroid() && setgid(0) != -1) {
|
| + if (sandbox::IsAndroid() && setgid(0) != -1) {
|
| errno = 0;
|
| BPF_ASSERT(setgid(0) == -ErrorCode::ERR_MAX_ERRNO);
|
| BPF_ASSERT(errno == 0);
|
|
|