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

Side by Side Diff: sandbox/sandbox.gyp

Issue 9295005: Calling clone(CLONE_NEWPID) results in the new pid namespace getting a new "init" process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Address AGL's comments Created 8 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 | Annotate | Revision Log
« no previous file with comments | « sandbox/linux/suid/sandbox.c ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 ], 148 ],
149 }, 149 },
150 ], 150 ],
151 }], 151 }],
152 [ 'OS=="linux" and selinux==0', { 152 [ 'OS=="linux" and selinux==0', {
153 'targets': [ 153 'targets': [
154 { 154 {
155 'target_name': 'chrome_sandbox', 155 'target_name': 'chrome_sandbox',
156 'type': 'executable', 156 'type': 'executable',
157 'sources': [ 157 'sources': [
158 'linux/suid/init_process.c',
159 'linux/suid/init_process.h',
158 'linux/suid/linux_util.c', 160 'linux/suid/linux_util.c',
159 'linux/suid/linux_util.h', 161 'linux/suid/linux_util.h',
160 'linux/suid/process_util.h', 162 'linux/suid/process_util.h',
161 'linux/suid/process_util_linux.c', 163 'linux/suid/process_util_linux.c',
162 'linux/suid/sandbox.c', 164 'linux/suid/sandbox.c',
163 ], 165 ],
164 'cflags': [ 166 'cflags': [
165 # For ULLONG_MAX 167 # For ULLONG_MAX
166 '-std=gnu99', 168 '-std=gnu99',
167 ], 169 ],
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 'POCDLL_EXPORTS', 374 'POCDLL_EXPORTS',
373 ], 375 ],
374 'include_dirs': [ 376 'include_dirs': [
375 '..', 377 '..',
376 ], 378 ],
377 }, 379 },
378 ], 380 ],
379 }], 381 }],
380 ], 382 ],
381 } 383 }
OLDNEW
« no previous file with comments | « sandbox/linux/suid/sandbox.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698