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

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: Rebase. Created 6 years, 7 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 target_arc h=="mipsel")', {
jln (very slow on Chromium) 2014/05/02 20:42:04 Please, wrap
nedeljko 2014/05/07 15:40:05 Done.
16 'compile_seccomp_bpf_demo': 1, 16 'compile_seccomp_bpf_demo': 1,
17 }, { 17 }, {
18 'compile_seccomp_bpf_demo': 0, 18 'compile_seccomp_bpf_demo': 0,
19 }], 19 }],
20 ], 20 ],
21 }, 21 },
22 'target_defaults': { 22 'target_defaults': {
23 'target_conditions': [ 23 'target_conditions': [
24 # All linux/ files will automatically be excluded on Android 24 # All linux/ files will automatically be excluded on Android
25 # so make sure we re-include them explicitly. 25 # so make sure we re-include them explicitly.
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'include_dirs': [ 233 'include_dirs': [
234 '..', 234 '..',
235 ], 235 ],
236 }, 236 },
237 { 'target_name': 'sandbox_services_headers', 237 { 'target_name': 'sandbox_services_headers',
238 'type': 'none', 238 'type': 'none',
239 'sources': [ 239 'sources': [
240 'services/android_arm_ucontext.h', 240 'services/android_arm_ucontext.h',
241 'services/android_ucontext.h', 241 'services/android_ucontext.h',
242 'services/android_i386_ucontext.h', 242 'services/android_i386_ucontext.h',
243 'services/android_mips_ucontext.h',
243 'services/arm_linux_syscalls.h', 244 'services/arm_linux_syscalls.h',
245 'services/mips_linux_syscalls.h',
244 'services/linux_syscalls.h', 246 'services/linux_syscalls.h',
245 'services/x86_32_linux_syscalls.h', 247 'services/x86_32_linux_syscalls.h',
246 'services/x86_64_linux_syscalls.h', 248 'services/x86_64_linux_syscalls.h',
247 ], 249 ],
248 'include_dirs': [ 250 'include_dirs': [
249 '..', 251 '..',
250 ], 252 ],
251 }, 253 },
252 { 254 {
253 # We make this its own target so that it does not interfere 255 # We make this its own target so that it does not interfere
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 }, 315 },
314 'dependencies': [ 316 'dependencies': [
315 'sandbox_linux_jni_unittests', 317 'sandbox_linux_jni_unittests',
316 ], 318 ],
317 'includes': [ '../../build/apk_test.gypi' ], 319 'includes': [ '../../build/apk_test.gypi' ],
318 } 320 }
319 ], 321 ],
320 }], 322 }],
321 ], 323 ],
322 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698