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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 if (compile_suid_client) { | 89 if (compile_suid_client) { |
90 sources += [ | 90 sources += [ |
91 "suid/client/setuid_sandbox_client_unittest.cc", | 91 "suid/client/setuid_sandbox_client_unittest.cc", |
92 ] | 92 ] |
93 } | 93 } |
94 if (use_seccomp_bpf) { | 94 if (use_seccomp_bpf) { |
95 sources += [ | 95 sources += [ |
96 "bpf_dsl/bpf_dsl_unittest.cc", | 96 "bpf_dsl/bpf_dsl_unittest.cc", |
97 "bpf_dsl/cons_unittest.cc", | 97 "bpf_dsl/cons_unittest.cc", |
98 "seccomp-bpf-helpers/baseline_policy_unittest.cc", | 98 "seccomp-bpf-helpers/baseline_policy_unittest.cc", |
| 99 "seccomp-bpf-helpers/syscall_parameters_restrictions_unittests.cc", |
99 "seccomp-bpf/bpf_tests_unittest.cc", | 100 "seccomp-bpf/bpf_tests_unittest.cc", |
100 "seccomp-bpf/codegen_unittest.cc", | 101 "seccomp-bpf/codegen_unittest.cc", |
101 "seccomp-bpf/errorcode_unittest.cc", | 102 "seccomp-bpf/errorcode_unittest.cc", |
102 "seccomp-bpf/sandbox_bpf_unittest.cc", | 103 "seccomp-bpf/sandbox_bpf_unittest.cc", |
103 "seccomp-bpf/syscall_iterator_unittest.cc", | 104 "seccomp-bpf/syscall_iterator_unittest.cc", |
104 "seccomp-bpf/syscall_unittest.cc", | 105 "seccomp-bpf/syscall_unittest.cc", |
105 ] | 106 ] |
106 } | 107 } |
107 if (compile_credentials) { | 108 if (compile_credentials) { |
108 sources += [ | 109 sources += [ |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 # 'type': 'none', | 309 # 'type': 'none', |
309 # 'variables': { | 310 # 'variables': { |
310 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 311 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
311 # }, | 312 # }, |
312 # 'dependencies': [ | 313 # 'dependencies': [ |
313 # 'sandbox_linux_jni_unittests', | 314 # 'sandbox_linux_jni_unittests', |
314 # ], | 315 # ], |
315 # 'includes': [ '../../build/apk_test.gypi' ], | 316 # 'includes': [ '../../build/apk_test.gypi' ], |
316 # } | 317 # } |
317 } | 318 } |
OLD | NEW |