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

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

Issue 2944493002: [Windows Sandbox Tests] Process Mitigations. (Closed)
Patch Set: Created 3 years, 6 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
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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 "src/address_sanitizer_test.cc", 175 "src/address_sanitizer_test.cc",
176 "src/app_container_test.cc", 176 "src/app_container_test.cc",
177 "src/file_policy_test.cc", 177 "src/file_policy_test.cc",
178 "src/handle_closer_test.cc", 178 "src/handle_closer_test.cc",
179 "src/handle_inheritance_test.cc", 179 "src/handle_inheritance_test.cc",
180 "src/integrity_level_test.cc", 180 "src/integrity_level_test.cc",
181 "src/ipc_ping_test.cc", 181 "src/ipc_ping_test.cc",
182 "src/lpc_policy_test.cc", 182 "src/lpc_policy_test.cc",
183 "src/named_pipe_policy_test.cc", 183 "src/named_pipe_policy_test.cc",
184 "src/policy_target_test.cc", 184 "src/policy_target_test.cc",
185 "src/process_mitigations_test.cc", 185 "src/process_mitigations_unittest.cc",
186 "src/process_mitigations_unittest_extensionpoints.cc",
grt (UTC plus 2) 2017/06/15 20:58:19 personal preference nit: make _unittest.cc the suf
Will Harris 2017/06/15 22:32:13 agree with this, I think _unittest.cc or _test.cc
penny 2017/06/27 20:43:50 DONE. (I don't want to use _test anymore, since t
187 "src/process_mitigations_unittest_imageload.cc",
188 "src/process_mitigations_unittest_win32k.cc",
186 "src/process_policy_test.cc", 189 "src/process_policy_test.cc",
187 "src/registry_policy_test.cc", 190 "src/registry_policy_test.cc",
188 "src/restricted_token_test.cc", 191 "src/restricted_token_test.cc",
189 "src/sync_policy_test.cc", 192 "src/sync_policy_test.cc",
190 "src/sync_policy_test.h", 193 "src/sync_policy_test.h",
191 "src/unload_dll_test.cc", 194 "src/unload_dll_test.cc",
192 "tests/common/controller.cc", 195 "tests/common/controller.cc",
193 "tests/common/controller.h", 196 "tests/common/controller.h",
194 "tests/common/test_utils.cc", 197 "tests/common/test_utils.cc",
195 "tests/common/test_utils.h", 198 "tests/common/test_utils.h",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 "sandbox_poc/pocdll/spyware.cc", 326 "sandbox_poc/pocdll/spyware.cc",
324 "sandbox_poc/pocdll/utils.h", 327 "sandbox_poc/pocdll/utils.h",
325 ] 328 ]
326 329
327 defines = [ "POCDLL_EXPORTS" ] 330 defines = [ "POCDLL_EXPORTS" ]
328 331
329 deps = [ 332 deps = [
330 "//build/config:exe_and_shlib_deps", 333 "//build/config:exe_and_shlib_deps",
331 ] 334 ]
332 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698