| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 | 213 |
| 214 libs = [ "dxva2.lib" ] | 214 libs = [ "dxva2.lib" ] |
| 215 } | 215 } |
| 216 | 216 |
| 217 executable("cfi_unittest_exe") { | 217 executable("cfi_unittest_exe") { |
| 218 sources = [ | 218 sources = [ |
| 219 "tests/integration_tests/cfi_unittest_exe.cc", | 219 "tests/integration_tests/cfi_unittest_exe.cc", |
| 220 ] | 220 ] |
| 221 deps = [ | 221 deps = [ |
| 222 "//base", | 222 "//base", |
| 223 "//build/config/sanitizers:deps", | 223 "//build/config:exe_and_shlib_deps", |
| 224 "//build/win:default_exe_manifest", | 224 "//build/win:default_exe_manifest", |
| 225 ] | 225 ] |
| 226 } | 226 } |
| 227 | 227 |
| 228 loadable_module("sbox_integration_test_hook_dll") { | 228 loadable_module("sbox_integration_test_hook_dll") { |
| 229 sources = [ | 229 sources = [ |
| 230 "tests/integration_tests/hooking_dll.cc", | 230 "tests/integration_tests/hooking_dll.cc", |
| 231 "tests/integration_tests/integration_tests_common.h", | 231 "tests/integration_tests/integration_tests_common.h", |
| 232 ] | 232 ] |
| 233 } | 233 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 "sandbox_poc/pocdll/pocdll.cc", | 320 "sandbox_poc/pocdll/pocdll.cc", |
| 321 "sandbox_poc/pocdll/processes_and_threads.cc", | 321 "sandbox_poc/pocdll/processes_and_threads.cc", |
| 322 "sandbox_poc/pocdll/registry.cc", | 322 "sandbox_poc/pocdll/registry.cc", |
| 323 "sandbox_poc/pocdll/spyware.cc", | 323 "sandbox_poc/pocdll/spyware.cc", |
| 324 "sandbox_poc/pocdll/utils.h", | 324 "sandbox_poc/pocdll/utils.h", |
| 325 ] | 325 ] |
| 326 | 326 |
| 327 defines = [ "POCDLL_EXPORTS" ] | 327 defines = [ "POCDLL_EXPORTS" ] |
| 328 | 328 |
| 329 deps = [ | 329 deps = [ |
| 330 "//build/config/sanitizers:deps", | 330 "//build/config:exe_and_shlib_deps", |
| 331 ] | 331 ] |
| 332 } | 332 } |
| OLD | NEW |