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 12 matching lines...) Expand all Loading... |
23 "src/filesystem_dispatcher.cc", | 23 "src/filesystem_dispatcher.cc", |
24 "src/filesystem_dispatcher.h", | 24 "src/filesystem_dispatcher.h", |
25 "src/filesystem_interception.cc", | 25 "src/filesystem_interception.cc", |
26 "src/filesystem_interception.h", | 26 "src/filesystem_interception.h", |
27 "src/filesystem_policy.cc", | 27 "src/filesystem_policy.cc", |
28 "src/filesystem_policy.h", | 28 "src/filesystem_policy.h", |
29 "src/handle_closer.cc", | 29 "src/handle_closer.cc", |
30 "src/handle_closer.h", | 30 "src/handle_closer.h", |
31 "src/handle_closer_agent.cc", | 31 "src/handle_closer_agent.cc", |
32 "src/handle_closer_agent.h", | 32 "src/handle_closer_agent.h", |
| 33 "src/heap_helper.cc", |
| 34 "src/heap_helper.h", |
33 "src/interception.cc", | 35 "src/interception.cc", |
34 "src/interception.h", | 36 "src/interception.h", |
35 "src/interception_agent.cc", | 37 "src/interception_agent.cc", |
36 "src/interception_agent.h", | 38 "src/interception_agent.h", |
37 "src/interception_internal.h", | 39 "src/interception_internal.h", |
38 "src/interceptors.h", | 40 "src/interceptors.h", |
39 "src/internal_types.h", | 41 "src/internal_types.h", |
40 "src/ipc_tags.h", | 42 "src/ipc_tags.h", |
41 "src/job.cc", | 43 "src/job.cc", |
42 "src/job.h", | 44 "src/job.h", |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 "sandbox_poc/pocdll/spyware.cc", | 323 "sandbox_poc/pocdll/spyware.cc", |
322 "sandbox_poc/pocdll/utils.h", | 324 "sandbox_poc/pocdll/utils.h", |
323 ] | 325 ] |
324 | 326 |
325 defines = [ "POCDLL_EXPORTS" ] | 327 defines = [ "POCDLL_EXPORTS" ] |
326 | 328 |
327 deps = [ | 329 deps = [ |
328 "//build/config/sanitizers:deps", | 330 "//build/config/sanitizers:deps", |
329 ] | 331 ] |
330 } | 332 } |
OLD | NEW |