| 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 # This needs to be a static library rather than a sources set because small | 7 # This needs to be a static library rather than a sources set because small |
| 8 # portions of this are used in some contexts (like chrome_elf), and it | 8 # portions of this are used in some contexts (like chrome_elf), and it |
| 9 # doesnn't seem to dead-code strip very well. This saves 12K on chrome_elf.dll, | 9 # doesnn't seem to dead-code strip very well. This saves 12K on chrome_elf.dll, |
| 10 # over a source set, for example. | 10 # over a source set, for example. |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "src/handle_inheritance_test.cc", | 198 "src/handle_inheritance_test.cc", |
| 199 "src/handle_policy_test.cc", | 199 "src/handle_policy_test.cc", |
| 200 "src/integrity_level_test.cc", | 200 "src/integrity_level_test.cc", |
| 201 "src/ipc_ping_test.cc", | 201 "src/ipc_ping_test.cc", |
| 202 "src/lpc_policy_test.cc", | 202 "src/lpc_policy_test.cc", |
| 203 "src/named_pipe_policy_test.cc", | 203 "src/named_pipe_policy_test.cc", |
| 204 "src/policy_target_test.cc", | 204 "src/policy_target_test.cc", |
| 205 "src/process_mitigations_test.cc", | 205 "src/process_mitigations_test.cc", |
| 206 "src/process_policy_test.cc", | 206 "src/process_policy_test.cc", |
| 207 "src/registry_policy_test.cc", | 207 "src/registry_policy_test.cc", |
| 208 "src/restricted_token_test.cc", |
| 208 "src/sync_policy_test.cc", | 209 "src/sync_policy_test.cc", |
| 209 "src/sync_policy_test.h", | 210 "src/sync_policy_test.h", |
| 210 "src/unload_dll_test.cc", | 211 "src/unload_dll_test.cc", |
| 211 "tests/common/controller.cc", | 212 "tests/common/controller.cc", |
| 212 "tests/common/controller.h", | 213 "tests/common/controller.h", |
| 213 "tests/common/test_utils.cc", | 214 "tests/common/test_utils.cc", |
| 214 "tests/common/test_utils.h", | 215 "tests/common/test_utils.h", |
| 215 "tests/integration_tests/integration_tests.cc", | 216 "tests/integration_tests/integration_tests.cc", |
| 216 "tests/integration_tests/integration_tests_test.cc", | 217 "tests/integration_tests/integration_tests_test.cc", |
| 217 ] | 218 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 "sandbox_poc/pocdll/spyware.cc", | 303 "sandbox_poc/pocdll/spyware.cc", |
| 303 "sandbox_poc/pocdll/utils.h", | 304 "sandbox_poc/pocdll/utils.h", |
| 304 ] | 305 ] |
| 305 | 306 |
| 306 defines = [ "POCDLL_EXPORTS" ] | 307 defines = [ "POCDLL_EXPORTS" ] |
| 307 | 308 |
| 308 deps = [ | 309 deps = [ |
| 309 "//build/config/sanitizers:deps", | 310 "//build/config/sanitizers:deps", |
| 310 ] | 311 ] |
| 311 } | 312 } |
| OLD | NEW |