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

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

Issue 569533002: Remove --find-inode-switch hack from chrome-sandbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 '../..', 180 '../..',
181 ], 181 ],
182 }, 182 },
183 { 183 {
184 # The setuid sandbox, for Linux 184 # The setuid sandbox, for Linux
185 'target_name': 'chrome_sandbox', 185 'target_name': 'chrome_sandbox',
186 'type': 'executable', 186 'type': 'executable',
187 'sources': [ 187 'sources': [
188 'suid/common/sandbox.h', 188 'suid/common/sandbox.h',
189 'suid/common/suid_unsafe_environment_variables.h', 189 'suid/common/suid_unsafe_environment_variables.h',
190 'suid/linux_util.c',
191 'suid/linux_util.h', 190 'suid/linux_util.h',
192 'suid/process_util.h', 191 'suid/process_util.h',
193 'suid/process_util_linux.c', 192 'suid/process_util_linux.c',
194 'suid/sandbox.c', 193 'suid/sandbox.c',
195 ], 194 ],
196 'cflags': [ 195 'cflags': [
197 # For ULLONG_MAX 196 # For ULLONG_MAX
198 '-std=gnu99', 197 '-std=gnu99',
199 ], 198 ],
200 'include_dirs': [ 199 'include_dirs': [
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 '../sandbox_linux_unittests.isolate', 344 '../sandbox_linux_unittests.isolate',
346 ], 345 ],
347 'sources': [ 346 'sources': [
348 '../sandbox_linux_unittests.isolate', 347 '../sandbox_linux_unittests.isolate',
349 ], 348 ],
350 }, 349 },
351 ], 350 ],
352 }], 351 }],
353 ], 352 ],
354 } 353 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698