| 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 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 compile_suid_client = is_linux | 8 compile_suid_client = is_linux |
| 9 | 9 |
| 10 compile_credentials = is_linux | 10 compile_credentials = is_linux |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "bpf_dsl/bpf_dsl_forward.h", | 143 "bpf_dsl/bpf_dsl_forward.h", |
| 144 "bpf_dsl/bpf_dsl_impl.h", | 144 "bpf_dsl/bpf_dsl_impl.h", |
| 145 "bpf_dsl/cons.h", | 145 "bpf_dsl/cons.h", |
| 146 "bpf_dsl/dump_bpf.cc", | 146 "bpf_dsl/dump_bpf.cc", |
| 147 "bpf_dsl/dump_bpf.h", | 147 "bpf_dsl/dump_bpf.h", |
| 148 "bpf_dsl/policy.cc", | 148 "bpf_dsl/policy.cc", |
| 149 "bpf_dsl/policy.h", | 149 "bpf_dsl/policy.h", |
| 150 "bpf_dsl/policy_compiler.cc", | 150 "bpf_dsl/policy_compiler.cc", |
| 151 "bpf_dsl/policy_compiler.h", | 151 "bpf_dsl/policy_compiler.h", |
| 152 "bpf_dsl/trap_registry.h", | 152 "bpf_dsl/trap_registry.h", |
| 153 "seccomp-bpf/basicblock.cc", | |
| 154 "seccomp-bpf/basicblock.h", | |
| 155 "seccomp-bpf/codegen.cc", | 153 "seccomp-bpf/codegen.cc", |
| 156 "seccomp-bpf/codegen.h", | 154 "seccomp-bpf/codegen.h", |
| 157 "seccomp-bpf/die.cc", | 155 "seccomp-bpf/die.cc", |
| 158 "seccomp-bpf/die.h", | 156 "seccomp-bpf/die.h", |
| 159 "seccomp-bpf/errorcode.cc", | 157 "seccomp-bpf/errorcode.cc", |
| 160 "seccomp-bpf/errorcode.h", | 158 "seccomp-bpf/errorcode.h", |
| 161 "seccomp-bpf/instruction.h", | |
| 162 "seccomp-bpf/linux_seccomp.h", | 159 "seccomp-bpf/linux_seccomp.h", |
| 163 "seccomp-bpf/sandbox_bpf.cc", | 160 "seccomp-bpf/sandbox_bpf.cc", |
| 164 "seccomp-bpf/sandbox_bpf.h", | 161 "seccomp-bpf/sandbox_bpf.h", |
| 165 "seccomp-bpf/syscall.cc", | 162 "seccomp-bpf/syscall.cc", |
| 166 "seccomp-bpf/syscall.h", | 163 "seccomp-bpf/syscall.h", |
| 167 "seccomp-bpf/syscall_iterator.cc", | 164 "seccomp-bpf/syscall_iterator.cc", |
| 168 "seccomp-bpf/syscall_iterator.h", | 165 "seccomp-bpf/syscall_iterator.h", |
| 169 "seccomp-bpf/trap.cc", | 166 "seccomp-bpf/trap.cc", |
| 170 "seccomp-bpf/trap.h", | 167 "seccomp-bpf/trap.h", |
| 171 "seccomp-bpf/verifier.cc", | 168 "seccomp-bpf/verifier.cc", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 # 'type': 'none', | 324 # 'type': 'none', |
| 328 # 'variables': { | 325 # 'variables': { |
| 329 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 326 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 330 # }, | 327 # }, |
| 331 # 'dependencies': [ | 328 # 'dependencies': [ |
| 332 # 'sandbox_linux_jni_unittests', | 329 # 'sandbox_linux_jni_unittests', |
| 333 # ], | 330 # ], |
| 334 # 'includes': [ '../../build/apk_test.gypi' ], | 331 # 'includes': [ '../../build/apk_test.gypi' ], |
| 335 # } | 332 # } |
| 336 } | 333 } |
| OLD | NEW |