| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "seccomp-bpf/syscall_iterator.cc", | 166 "seccomp-bpf/syscall_iterator.cc", |
| 167 "seccomp-bpf/syscall_iterator.h", | 167 "seccomp-bpf/syscall_iterator.h", |
| 168 "seccomp-bpf/trap.cc", | 168 "seccomp-bpf/trap.cc", |
| 169 "seccomp-bpf/trap.h", | 169 "seccomp-bpf/trap.h", |
| 170 "seccomp-bpf/verifier.cc", | 170 "seccomp-bpf/verifier.cc", |
| 171 "seccomp-bpf/verifier.h", | 171 "seccomp-bpf/verifier.h", |
| 172 ] | 172 ] |
| 173 defines = [ "SANDBOX_IMPLEMENTATION" ] | 173 defines = [ "SANDBOX_IMPLEMENTATION" ] |
| 174 | 174 |
| 175 deps = [ | 175 deps = [ |
| 176 ":sandbox_services", |
| 176 ":sandbox_services_headers", | 177 ":sandbox_services_headers", |
| 177 "//base", | 178 "//base", |
| 178 ] | 179 ] |
| 179 } | 180 } |
| 180 | 181 |
| 181 component("seccomp_bpf_helpers") { | 182 component("seccomp_bpf_helpers") { |
| 182 sources = [ | 183 sources = [ |
| 183 "seccomp-bpf-helpers/baseline_policy.cc", | 184 "seccomp-bpf-helpers/baseline_policy.cc", |
| 184 "seccomp-bpf-helpers/baseline_policy.h", | 185 "seccomp-bpf-helpers/baseline_policy.h", |
| 185 "seccomp-bpf-helpers/sigsys_handlers.cc", | 186 "seccomp-bpf-helpers/sigsys_handlers.cc", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 # 'type': 'none', | 329 # 'type': 'none', |
| 329 # 'variables': { | 330 # 'variables': { |
| 330 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 331 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 331 # }, | 332 # }, |
| 332 # 'dependencies': [ | 333 # 'dependencies': [ |
| 333 # 'sandbox_linux_jni_unittests', | 334 # 'sandbox_linux_jni_unittests', |
| 334 # ], | 335 # ], |
| 335 # 'includes': [ '../../build/apk_test.gypi' ], | 336 # 'includes': [ '../../build/apk_test.gypi' ], |
| 336 # } | 337 # } |
| 337 } | 338 } |
| OLD | NEW |