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

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

Issue 868253011: Make chrome.exe built with ASan/Win work with sandbox enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more EXPECT turned into ASSERT Created 5 years, 10 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 source_set("sandbox") { 7 source_set("sandbox") {
8 sources = [ 8 sources = [
9 "src/acl.cc", 9 "src/acl.cc",
10 "src/acl.h", 10 "src/acl.h",
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "wow_helper/wow_helper.pdb", 178 "wow_helper/wow_helper.pdb",
179 ] 179 ]
180 outputs = [ 180 outputs = [
181 "$root_out_dir/{{source_file_part}}", 181 "$root_out_dir/{{source_file_part}}",
182 ] 182 ]
183 } 183 }
184 } 184 }
185 185
186 test("sbox_integration_tests") { 186 test("sbox_integration_tests") {
187 sources = [ 187 sources = [
188 "src/address_sanitizer_test.cc",
188 "src/app_container_test.cc", 189 "src/app_container_test.cc",
189 "src/file_policy_test.cc", 190 "src/file_policy_test.cc",
190 "src/handle_inheritance_test.cc", 191 "src/handle_inheritance_test.cc",
191 "src/handle_policy_test.cc", 192 "src/handle_policy_test.cc",
192 "tests/integration_tests/integration_tests_test.cc", 193 "tests/integration_tests/integration_tests_test.cc",
193 "src/handle_closer_test.cc", 194 "src/handle_closer_test.cc",
194 "src/integrity_level_test.cc", 195 "src/integrity_level_test.cc",
195 "src/ipc_ping_test.cc", 196 "src/ipc_ping_test.cc",
196 "src/named_pipe_policy_test.cc", 197 "src/named_pipe_policy_test.cc",
197 "src/policy_target_test.cc", 198 "src/policy_target_test.cc",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "sandbox_poc/pocdll/network.cc", 290 "sandbox_poc/pocdll/network.cc",
290 "sandbox_poc/pocdll/pocdll.cc", 291 "sandbox_poc/pocdll/pocdll.cc",
291 "sandbox_poc/pocdll/processes_and_threads.cc", 292 "sandbox_poc/pocdll/processes_and_threads.cc",
292 "sandbox_poc/pocdll/registry.cc", 293 "sandbox_poc/pocdll/registry.cc",
293 "sandbox_poc/pocdll/spyware.cc", 294 "sandbox_poc/pocdll/spyware.cc",
294 "sandbox_poc/pocdll/utils.h", 295 "sandbox_poc/pocdll/utils.h",
295 ] 296 ]
296 297
297 defines = [ "POCDLL_EXPORTS" ] 298 defines = [ "POCDLL_EXPORTS" ]
298 } 299 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698