Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: sandbox/win/BUILD.gn

Issue 2726733003: CSRSS lockdown: destroy CSRSS heap (Closed)
Patch Set: refactor heap code to heap_helper, add some explicit tests of these heap_helper functions Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sandbox/win/src/handle_closer_test.cc » ('j') | sandbox/win/src/heap_helper.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "sandbox_poc/pocdll/spyware.cc", 322 "sandbox_poc/pocdll/spyware.cc",
321 "sandbox_poc/pocdll/utils.h", 323 "sandbox_poc/pocdll/utils.h",
322 ] 324 ]
323 325
324 defines = [ "POCDLL_EXPORTS" ] 326 defines = [ "POCDLL_EXPORTS" ]
325 327
326 deps = [ 328 deps = [
327 "//build/config/sanitizers:deps", 329 "//build/config/sanitizers:deps",
328 ] 330 ]
329 } 331 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/win/src/handle_closer_test.cc » ('j') | sandbox/win/src/heap_helper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698