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

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

Issue 1528233002: 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 source_set("sandbox") { 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
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") {
8 sources = [ 12 sources = [
9 "src/acl.cc", 13 "src/acl.cc",
10 "src/acl.h", 14 "src/acl.h",
11 "src/app_container.cc", 15 "src/app_container.cc",
12 "src/app_container.h", 16 "src/app_container.h",
13 "src/broker_services.cc", 17 "src/broker_services.cc",
14 "src/broker_services.h", 18 "src/broker_services.h",
15 "src/crosscall_client.h", 19 "src/crosscall_client.h",
16 "src/crosscall_params.h", 20 "src/crosscall_params.h",
17 "src/crosscall_server.cc", 21 "src/crosscall_server.cc",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 "sandbox_poc/pocdll/spyware.cc", 305 "sandbox_poc/pocdll/spyware.cc",
302 "sandbox_poc/pocdll/utils.h", 306 "sandbox_poc/pocdll/utils.h",
303 ] 307 ]
304 308
305 defines = [ "POCDLL_EXPORTS" ] 309 defines = [ "POCDLL_EXPORTS" ]
306 310
307 deps = [ 311 deps = [
308 "//build/config/sanitizers:deps", 312 "//build/config/sanitizers:deps",
309 ] 313 ]
310 } 314 }
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