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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("sandbox") { | 7 source_set("sandbox") { |
8 sources = [ | 8 sources = [ |
9 "src/acl.cc", | 9 "src/acl.cc", |
10 "src/acl.h", | 10 "src/acl.h", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 test("sbox_integration_tests") { | 189 test("sbox_integration_tests") { |
190 sources = [ | 190 sources = [ |
191 "src/address_sanitizer_test.cc", | 191 "src/address_sanitizer_test.cc", |
192 "src/app_container_test.cc", | 192 "src/app_container_test.cc", |
193 "src/file_policy_test.cc", | 193 "src/file_policy_test.cc", |
194 "src/handle_closer_test.cc", | 194 "src/handle_closer_test.cc", |
195 "src/handle_inheritance_test.cc", | 195 "src/handle_inheritance_test.cc", |
196 "src/handle_policy_test.cc", | 196 "src/handle_policy_test.cc", |
197 "src/integrity_level_test.cc", | 197 "src/integrity_level_test.cc", |
198 "src/ipc_ping_test.cc", | 198 "src/ipc_ping_test.cc", |
| 199 "src/lpc_policy_test.cc", |
199 "src/named_pipe_policy_test.cc", | 200 "src/named_pipe_policy_test.cc", |
200 "src/policy_target_test.cc", | 201 "src/policy_target_test.cc", |
201 "src/process_mitigations_test.cc", | 202 "src/process_mitigations_test.cc", |
202 "src/process_policy_test.cc", | 203 "src/process_policy_test.cc", |
203 "src/registry_policy_test.cc", | 204 "src/registry_policy_test.cc", |
204 "src/sync_policy_test.cc", | 205 "src/sync_policy_test.cc", |
205 "src/sync_policy_test.h", | 206 "src/sync_policy_test.h", |
206 "src/unload_dll_test.cc", | 207 "src/unload_dll_test.cc", |
207 "tests/common/controller.cc", | 208 "tests/common/controller.cc", |
208 "tests/common/controller.h", | 209 "tests/common/controller.h", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 "sandbox_poc/pocdll/spyware.cc", | 299 "sandbox_poc/pocdll/spyware.cc", |
299 "sandbox_poc/pocdll/utils.h", | 300 "sandbox_poc/pocdll/utils.h", |
300 ] | 301 ] |
301 | 302 |
302 defines = [ "POCDLL_EXPORTS" ] | 303 defines = [ "POCDLL_EXPORTS" ] |
303 | 304 |
304 deps = [ | 305 deps = [ |
305 "//build/config/sanitizers:deps", | 306 "//build/config/sanitizers:deps", |
306 ] | 307 ] |
307 } | 308 } |
OLD | NEW |