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

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

Issue 1099263003: Reland: Introduce sys_sigprocmask and sys_sigaction. (patchset #4 id:80001 of https://codereview.ch… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
282 'system_headers/android_arm_ucontext.h',
283 'system_headers/android_i386_ucontext.h',
284 'system_headers/android_mips_ucontext.h',
285 'system_headers/android_ucontext.h',
286 'system_headers/arm64_linux_syscalls.h', 281 'system_headers/arm64_linux_syscalls.h',
282 'system_headers/arm64_linux_ucontext.h',
287 'system_headers/arm_linux_syscalls.h', 283 'system_headers/arm_linux_syscalls.h',
284 'system_headers/arm_linux_ucontext.h',
288 'system_headers/capability.h', 285 'system_headers/capability.h',
286 'system_headers/i386_linux_ucontext.h',
289 'system_headers/linux_futex.h', 287 'system_headers/linux_futex.h',
290 'system_headers/linux_seccomp.h', 288 'system_headers/linux_seccomp.h',
291 'system_headers/linux_syscalls.h', 289 'system_headers/linux_syscalls.h',
290 'system_headers/linux_ucontext.h',
292 'system_headers/mips_linux_syscalls.h', 291 'system_headers/mips_linux_syscalls.h',
292 'system_headers/mips_linux_ucontext.h',
293 'system_headers/x86_32_linux_syscalls.h', 293 'system_headers/x86_32_linux_syscalls.h',
294 'system_headers/x86_64_linux_syscalls.h', 294 'system_headers/x86_64_linux_syscalls.h',
295 ], 295 ],
296 'include_dirs': [ 296 'include_dirs': [
297 '..', 297 '..',
298 ], 298 ],
299 }, 299 },
300 { 300 {
301 # We make this its own target so that it does not interfere 301 # We make this its own target so that it does not interfere
302 # with our tests. 302 # with our tests.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 '../../build/isolate.gypi', 396 '../../build/isolate.gypi',
397 ], 397 ],
398 'sources': [ 398 'sources': [
399 '../sandbox_linux_unittests.isolate', 399 '../sandbox_linux_unittests.isolate',
400 ], 400 ],
401 }, 401 },
402 ], 402 ],
403 }], 403 }],
404 ], 404 ],
405 } 405 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698