| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 "sandbox_poc/pocdll/spyware.cc", | 298 "sandbox_poc/pocdll/spyware.cc", |
| 298 "sandbox_poc/pocdll/utils.h", | 299 "sandbox_poc/pocdll/utils.h", |
| 299 ] | 300 ] |
| 300 | 301 |
| 301 defines = [ "POCDLL_EXPORTS" ] | 302 defines = [ "POCDLL_EXPORTS" ] |
| 302 | 303 |
| 303 deps = [ | 304 deps = [ |
| 304 "//build/config/sanitizers:deps", | 305 "//build/config/sanitizers:deps", |
| 305 ] | 306 ] |
| 306 } | 307 } |
| OLD | NEW |