OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Tests need to be compiled in the same link unit, so we have to list them | 5 # Tests need to be compiled in the same link unit, so we have to list them |
6 # in a separate .gypi file. | 6 # in a separate .gypi file. |
7 { | 7 { |
8 'dependencies': [ | 8 'dependencies': [ |
9 'sandbox', | 9 'sandbox', |
10 'sandbox_linux_test_utils', | 10 'sandbox_linux_test_utils', |
(...skipping 27 matching lines...) Expand all Loading... |
38 'suid/client/setuid_sandbox_host_unittest.cc', | 38 'suid/client/setuid_sandbox_host_unittest.cc', |
39 ], | 39 ], |
40 }], | 40 }], |
41 [ 'use_seccomp_bpf==1', { | 41 [ 'use_seccomp_bpf==1', { |
42 'sources': [ | 42 'sources': [ |
43 'bpf_dsl/bpf_dsl_unittest.cc', | 43 'bpf_dsl/bpf_dsl_unittest.cc', |
44 'bpf_dsl/codegen_unittest.cc', | 44 'bpf_dsl/codegen_unittest.cc', |
45 'bpf_dsl/cons_unittest.cc', | 45 'bpf_dsl/cons_unittest.cc', |
46 'bpf_dsl/dump_bpf.cc', | 46 'bpf_dsl/dump_bpf.cc', |
47 'bpf_dsl/dump_bpf.h', | 47 'bpf_dsl/dump_bpf.h', |
48 'bpf_dsl/errorcode_unittest.cc', | |
49 'bpf_dsl/syscall_set_unittest.cc', | 48 'bpf_dsl/syscall_set_unittest.cc', |
50 'bpf_dsl/test_trap_registry.cc', | 49 'bpf_dsl/test_trap_registry.cc', |
51 'bpf_dsl/test_trap_registry.h', | 50 'bpf_dsl/test_trap_registry.h', |
52 'bpf_dsl/test_trap_registry_unittest.cc', | 51 'bpf_dsl/test_trap_registry_unittest.cc', |
53 'bpf_dsl/verifier.cc', | 52 'bpf_dsl/verifier.cc', |
54 'bpf_dsl/verifier.h', | 53 'bpf_dsl/verifier.h', |
55 'integration_tests/bpf_dsl_seccomp_unittest.cc', | 54 'integration_tests/bpf_dsl_seccomp_unittest.cc', |
56 'integration_tests/seccomp_broker_process_unittest.cc', | 55 'integration_tests/seccomp_broker_process_unittest.cc', |
57 'seccomp-bpf-helpers/baseline_policy_unittest.cc', | 56 'seccomp-bpf-helpers/baseline_policy_unittest.cc', |
58 'seccomp-bpf-helpers/syscall_parameters_restrictions_unittests.cc', | 57 'seccomp-bpf-helpers/syscall_parameters_restrictions_unittests.cc', |
(...skipping 26 matching lines...) Expand all Loading... |
85 [ 'use_base_test_suite==1', { | 84 [ 'use_base_test_suite==1', { |
86 'dependencies': [ | 85 'dependencies': [ |
87 '../base/base.gyp:test_support_base', | 86 '../base/base.gyp:test_support_base', |
88 ], | 87 ], |
89 'defines': [ | 88 'defines': [ |
90 'SANDBOX_USES_BASE_TEST_SUITE', | 89 'SANDBOX_USES_BASE_TEST_SUITE', |
91 ], | 90 ], |
92 }], | 91 }], |
93 ], | 92 ], |
94 } | 93 } |
OLD | NEW |