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

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

Issue 260793003: [MIPS] Add seccomp bpf support (Closed) Base URL: https://git.chromium.org/git/chromium/src.git@master
Patch Set: Update per code review Created 6 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
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,
11 }, { 11 }, {
12 'compile_suid_client': 0, 12 'compile_suid_client': 0,
13 'compile_credentials': 0, 13 'compile_credentials': 0,
14 }], 14 }],
15 ['OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', { 15 ['OS=="linux" and (target_arch=="ia32" or target_arch=="x64" or '
16 'target_arch=="mipsel")', {
16 'compile_seccomp_bpf_demo': 1, 17 'compile_seccomp_bpf_demo': 1,
17 }, { 18 }, {
18 'compile_seccomp_bpf_demo': 0, 19 'compile_seccomp_bpf_demo': 0,
19 }], 20 }],
20 ], 21 ],
21 }, 22 },
22 'target_defaults': { 23 'target_defaults': {
23 'target_conditions': [ 24 'target_conditions': [
24 # All linux/ files will automatically be excluded on Android 25 # All linux/ files will automatically be excluded on Android
25 # so make sure we re-include them explicitly. 26 # so make sure we re-include them explicitly.
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 '..', 261 '..',
261 ], 262 ],
262 }, 263 },
263 { 'target_name': 'sandbox_services_headers', 264 { 'target_name': 'sandbox_services_headers',
264 'type': 'none', 265 'type': 'none',
265 'sources': [ 266 'sources': [
266 'services/android_arm_ucontext.h', 267 'services/android_arm_ucontext.h',
267 'services/android_futex.h', 268 'services/android_futex.h',
268 'services/android_ucontext.h', 269 'services/android_ucontext.h',
269 'services/android_i386_ucontext.h', 270 'services/android_i386_ucontext.h',
271 'services/android_mips_ucontext.h',
270 'services/arm_linux_syscalls.h', 272 'services/arm_linux_syscalls.h',
273 'services/mips_linux_syscalls.h',
271 'services/linux_syscalls.h', 274 'services/linux_syscalls.h',
272 'services/x86_32_linux_syscalls.h', 275 'services/x86_32_linux_syscalls.h',
273 'services/x86_64_linux_syscalls.h', 276 'services/x86_64_linux_syscalls.h',
274 ], 277 ],
275 'include_dirs': [ 278 'include_dirs': [
276 '..', 279 '..',
277 ], 280 ],
278 }, 281 },
279 { 282 {
280 # We make this its own target so that it does not interfere 283 # We make this its own target so that it does not interfere
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 '../sandbox_linux_unittests.isolate', 360 '../sandbox_linux_unittests.isolate',
358 ], 361 ],
359 'sources': [ 362 'sources': [
360 '../sandbox_linux_unittests.isolate', 363 '../sandbox_linux_unittests.isolate',
361 ], 364 ],
362 }, 365 },
363 ], 366 ],
364 }], 367 }],
365 ], 368 ],
366 } 369 }
OLDNEW
« no previous file with comments | « content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc ('k') | sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698