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

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

Issue 997463002: Add SetCapabilities for setting capabilities to an exact set. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update BUILD.gn. Created 5 years, 9 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 ['compile_credentials==1', { 259 ['compile_credentials==1', {
260 'sources': [ 260 'sources': [
261 'services/credentials.cc', 261 'services/credentials.cc',
262 'services/credentials.h', 262 'services/credentials.h',
263 'services/namespace_sandbox.cc', 263 'services/namespace_sandbox.cc',
264 'services/namespace_sandbox.h', 264 'services/namespace_sandbox.h',
265 'services/namespace_utils.cc', 265 'services/namespace_utils.cc',
266 'services/namespace_utils.h', 266 'services/namespace_utils.h',
267 ], 267 ],
268 'dependencies': [ 268 'dependencies': [
269 # for capabilities.cc. 269 # for capability.h.
270 '../build/linux/system.gyp:libcap', 270 'sandbox_services_headers',
271 ], 271 ],
272 }], 272 }],
273 ], 273 ],
274 'include_dirs': [ 274 'include_dirs': [
275 '..', 275 '..',
276 ], 276 ],
277 }, 277 },
278 { 'target_name': 'sandbox_services_headers', 278 { 'target_name': 'sandbox_services_headers',
279 'type': 'none', 279 'type': 'none',
280 'sources': [ 280 'sources': [
281 'system_headers/android_arm64_ucontext.h', 281 'system_headers/android_arm64_ucontext.h',
282 'system_headers/android_arm_ucontext.h', 282 'system_headers/android_arm_ucontext.h',
283 'system_headers/android_futex.h', 283 'system_headers/android_futex.h',
284 'system_headers/android_i386_ucontext.h', 284 'system_headers/android_i386_ucontext.h',
285 'system_headers/android_mips_ucontext.h', 285 'system_headers/android_mips_ucontext.h',
286 'system_headers/android_ucontext.h', 286 'system_headers/android_ucontext.h',
287 'system_headers/arm64_linux_syscalls.h', 287 'system_headers/arm64_linux_syscalls.h',
288 'system_headers/arm_linux_syscalls.h', 288 'system_headers/arm_linux_syscalls.h',
289 'system_headers/capability.h',
289 'system_headers/linux_seccomp.h', 290 'system_headers/linux_seccomp.h',
290 'system_headers/linux_syscalls.h', 291 'system_headers/linux_syscalls.h',
291 'system_headers/mips_linux_syscalls.h', 292 'system_headers/mips_linux_syscalls.h',
292 'system_headers/x86_32_linux_syscalls.h', 293 'system_headers/x86_32_linux_syscalls.h',
293 'system_headers/x86_64_linux_syscalls.h', 294 'system_headers/x86_64_linux_syscalls.h',
294 ], 295 ],
295 'include_dirs': [ 296 'include_dirs': [
296 '..', 297 '..',
297 ], 298 ],
298 }, 299 },
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 '../../build/isolate.gypi', 396 '../../build/isolate.gypi',
396 ], 397 ],
397 'sources': [ 398 'sources': [
398 '../sandbox_linux_unittests.isolate', 399 '../sandbox_linux_unittests.isolate',
399 ], 400 ],
400 }, 401 },
401 ], 402 ],
402 }], 403 }],
403 ], 404 ],
404 } 405 }
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