| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 compile_suid_client = is_linux | 9 compile_suid_client = is_linux |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "bpf_dsl/dump_bpf.h", | 158 "bpf_dsl/dump_bpf.h", |
| 159 "bpf_dsl/linux_syscall_ranges.h", | 159 "bpf_dsl/linux_syscall_ranges.h", |
| 160 "bpf_dsl/policy.cc", | 160 "bpf_dsl/policy.cc", |
| 161 "bpf_dsl/policy.h", | 161 "bpf_dsl/policy.h", |
| 162 "bpf_dsl/policy_compiler.cc", | 162 "bpf_dsl/policy_compiler.cc", |
| 163 "bpf_dsl/policy_compiler.h", | 163 "bpf_dsl/policy_compiler.h", |
| 164 "bpf_dsl/seccomp_macros.h", | 164 "bpf_dsl/seccomp_macros.h", |
| 165 "bpf_dsl/syscall_set.cc", | 165 "bpf_dsl/syscall_set.cc", |
| 166 "bpf_dsl/syscall_set.h", | 166 "bpf_dsl/syscall_set.h", |
| 167 "bpf_dsl/trap_registry.h", | 167 "bpf_dsl/trap_registry.h", |
| 168 "bpf_dsl/verifier.cc", |
| 169 "bpf_dsl/verifier.h", |
| 168 "seccomp-bpf/die.cc", | 170 "seccomp-bpf/die.cc", |
| 169 "seccomp-bpf/die.h", | 171 "seccomp-bpf/die.h", |
| 170 "seccomp-bpf/errorcode.cc", | 172 "seccomp-bpf/errorcode.cc", |
| 171 "seccomp-bpf/errorcode.h", | 173 "seccomp-bpf/errorcode.h", |
| 172 "seccomp-bpf/sandbox_bpf.cc", | 174 "seccomp-bpf/sandbox_bpf.cc", |
| 173 "seccomp-bpf/sandbox_bpf.h", | 175 "seccomp-bpf/sandbox_bpf.h", |
| 174 "seccomp-bpf/syscall.cc", | 176 "seccomp-bpf/syscall.cc", |
| 175 "seccomp-bpf/syscall.h", | 177 "seccomp-bpf/syscall.h", |
| 176 "seccomp-bpf/trap.cc", | 178 "seccomp-bpf/trap.cc", |
| 177 "seccomp-bpf/trap.h", | 179 "seccomp-bpf/trap.h", |
| 178 "seccomp-bpf/verifier.cc", | |
| 179 "seccomp-bpf/verifier.h", | |
| 180 ] | 180 ] |
| 181 defines = [ "SANDBOX_IMPLEMENTATION" ] | 181 defines = [ "SANDBOX_IMPLEMENTATION" ] |
| 182 | 182 |
| 183 deps = [ | 183 deps = [ |
| 184 ":sandbox_services", | 184 ":sandbox_services", |
| 185 ":sandbox_services_headers", | 185 ":sandbox_services_headers", |
| 186 "//base", | 186 "//base", |
| 187 ] | 187 ] |
| 188 } | 188 } |
| 189 | 189 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 # 'type': 'none', | 352 # 'type': 'none', |
| 353 # 'variables': { | 353 # 'variables': { |
| 354 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 354 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 355 # }, | 355 # }, |
| 356 # 'dependencies': [ | 356 # 'dependencies': [ |
| 357 # 'sandbox_linux_jni_unittests', | 357 # 'sandbox_linux_jni_unittests', |
| 358 # ], | 358 # ], |
| 359 # 'includes': [ '../../build/apk_test.gypi' ], | 359 # 'includes': [ '../../build/apk_test.gypi' ], |
| 360 # } | 360 # } |
| 361 } | 361 } |
| OLD | NEW |