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

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

Issue 1867223005: Removed old AppContainer support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang warning and fix test. Created 4 years, 8 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/sandbox_win.gypi » ('j') | 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 # 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.
11 static_library("sandbox") { 11 static_library("sandbox") {
12 sources = [ 12 sources = [
13 "src/acl.cc", 13 "src/acl.cc",
14 "src/acl.h", 14 "src/acl.h",
15 "src/app_container.cc",
16 "src/app_container.h",
17 "src/broker_services.cc", 15 "src/broker_services.cc",
18 "src/broker_services.h", 16 "src/broker_services.h",
19 "src/crosscall_client.h", 17 "src/crosscall_client.h",
20 "src/crosscall_params.h", 18 "src/crosscall_params.h",
21 "src/crosscall_server.cc", 19 "src/crosscall_server.cc",
22 "src/crosscall_server.h", 20 "src/crosscall_server.h",
23 "src/eat_resolver.cc", 21 "src/eat_resolver.cc",
24 "src/eat_resolver.h", 22 "src/eat_resolver.h",
25 "src/filesystem_dispatcher.cc", 23 "src/filesystem_dispatcher.cc",
26 "src/filesystem_dispatcher.h", 24 "src/filesystem_dispatcher.h",
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 ":sandbox", 236 ":sandbox",
239 "//base/test:test_support", 237 "//base/test:test_support",
240 "//testing/gtest", 238 "//testing/gtest",
241 ] 239 ]
242 240
243 libs = [ "shlwapi.lib" ] 241 libs = [ "shlwapi.lib" ]
244 } 242 }
245 243
246 test("sbox_unittests") { 244 test("sbox_unittests") {
247 sources = [ 245 sources = [
248 "src/app_container_unittest.cc",
249 "src/interception_unittest.cc", 246 "src/interception_unittest.cc",
250 "src/ipc_unittest.cc", 247 "src/ipc_unittest.cc",
251 "src/job_unittest.cc", 248 "src/job_unittest.cc",
252 "src/policy_engine_unittest.cc", 249 "src/policy_engine_unittest.cc",
253 "src/policy_low_level_unittest.cc", 250 "src/policy_low_level_unittest.cc",
254 "src/policy_opcodes_unittest.cc", 251 "src/policy_opcodes_unittest.cc",
255 "src/restricted_token_unittest.cc", 252 "src/restricted_token_unittest.cc",
256 "src/sandbox_nt_util_unittest.cc", 253 "src/sandbox_nt_util_unittest.cc",
257 "src/service_resolver_unittest.cc", 254 "src/service_resolver_unittest.cc",
258 "src/sid_unittest.cc", 255 "src/sid_unittest.cc",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 "sandbox_poc/pocdll/spyware.cc", 302 "sandbox_poc/pocdll/spyware.cc",
306 "sandbox_poc/pocdll/utils.h", 303 "sandbox_poc/pocdll/utils.h",
307 ] 304 ]
308 305
309 defines = [ "POCDLL_EXPORTS" ] 306 defines = [ "POCDLL_EXPORTS" ]
310 307
311 deps = [ 308 deps = [
312 "//build/config/sanitizers:deps", 309 "//build/config/sanitizers:deps",
313 ] 310 ]
314 } 311 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/win/sandbox_win.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698