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

Side by Side Diff: sandbox/sandbox.gyp

Issue 149230: Linux: SUID sandbox support (Closed)
Patch Set: ... Created 11 years, 5 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/suid/sandbox.cc ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS=="linux"', {
11 'targets': [
12 {
13 'target_name': 'chrome-sandbox',
14 'type': 'executable',
15 'sources': [
16 'linux/suid/sandbox.cc',
17 ],
18 }
19 ],
20 }],
10 [ 'OS=="win"', { 21 [ 'OS=="win"', {
11 'targets': [ 22 'targets': [
12 { 23 {
13 'target_name': 'sandbox', 24 'target_name': 'sandbox',
14 'type': '<(library)', 25 'type': '<(library)',
15 'dependencies': [ 26 'dependencies': [
16 '../testing/gtest.gyp:gtest', 27 '../testing/gtest.gyp:gtest',
17 '../base/base.gyp:base', 28 '../base/base.gyp:base',
18 ], 29 ],
19 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', 30 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343',
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 'Debug': { 335 'Debug': {
325 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', 336 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h',
326 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', 337 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc',
327 }, 338 },
328 }, 339 },
329 }, 340 },
330 ], 341 ],
331 }], 342 }],
332 ], 343 ],
333 } 344 }
OLDNEW
« no previous file with comments | « sandbox/linux/suid/sandbox.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698