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

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

Issue 1532953003: Revert of Make base a static ibrary (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « mojo/public/BUILD.gn ('k') | no next file » | no next file with comments »
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 source_set("sandbox") {
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,
10 # over a source set, for example.
11 static_library("sandbox") {
12 sources = [ 8 sources = [
13 "src/acl.cc", 9 "src/acl.cc",
14 "src/acl.h", 10 "src/acl.h",
15 "src/app_container.cc", 11 "src/app_container.cc",
16 "src/app_container.h", 12 "src/app_container.h",
17 "src/broker_services.cc", 13 "src/broker_services.cc",
18 "src/broker_services.h", 14 "src/broker_services.h",
19 "src/crosscall_client.h", 15 "src/crosscall_client.h",
20 "src/crosscall_params.h", 16 "src/crosscall_params.h",
21 "src/crosscall_server.cc", 17 "src/crosscall_server.cc",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 "sandbox_poc/pocdll/spyware.cc", 301 "sandbox_poc/pocdll/spyware.cc",
306 "sandbox_poc/pocdll/utils.h", 302 "sandbox_poc/pocdll/utils.h",
307 ] 303 ]
308 304
309 defines = [ "POCDLL_EXPORTS" ] 305 defines = [ "POCDLL_EXPORTS" ]
310 306
311 deps = [ 307 deps = [
312 "//build/config/sanitizers:deps", 308 "//build/config/sanitizers:deps",
313 ] 309 ]
314 } 310 }
OLDNEW
« no previous file with comments | « mojo/public/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698