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

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 877153005: sandbox: extract SetuidSandboxHost code from SetuidSandboxClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to jln/hidehiko feedback; clang-format 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
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | sandbox/linux/sandbox_linux_test_sources.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="linux"', { 8 ['OS=="linux"', {
9 'compile_suid_client': 1, 9 'compile_suid_client': 1,
10 'compile_credentials': 1, 10 'compile_credentials': 1,
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 ], 308 ],
309 }, 309 },
310 { 310 {
311 'target_name': 'suid_sandbox_client', 311 'target_name': 'suid_sandbox_client',
312 'type': '<(component)', 312 'type': '<(component)',
313 'sources': [ 313 'sources': [
314 'suid/common/sandbox.h', 314 'suid/common/sandbox.h',
315 'suid/common/suid_unsafe_environment_variables.h', 315 'suid/common/suid_unsafe_environment_variables.h',
316 'suid/client/setuid_sandbox_client.cc', 316 'suid/client/setuid_sandbox_client.cc',
317 'suid/client/setuid_sandbox_client.h', 317 'suid/client/setuid_sandbox_client.h',
318 'suid/client/setuid_sandbox_host.cc',
319 'suid/client/setuid_sandbox_host.h',
318 ], 320 ],
319 'defines': [ 321 'defines': [
320 'SANDBOX_IMPLEMENTATION', 322 'SANDBOX_IMPLEMENTATION',
321 ], 323 ],
322 'dependencies': [ 324 'dependencies': [
323 '../base/base.gyp:base', 325 '../base/base.gyp:base',
324 'sandbox_services', 326 'sandbox_services',
325 ], 327 ],
326 'include_dirs': [ 328 'include_dirs': [
327 '..', 329 '..',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 '../../build/isolate.gypi', 390 '../../build/isolate.gypi',
389 ], 391 ],
390 'sources': [ 392 'sources': [
391 '../sandbox_linux_unittests.isolate', 393 '../sandbox_linux_unittests.isolate',
392 ], 394 ],
393 }, 395 },
394 ], 396 ],
395 }], 397 }],
396 ], 398 ],
397 } 399 }
OLDNEW
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698