| OLD | NEW |
| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 '..', | 264 '..', |
| 264 ], | 265 ], |
| 265 }, | 266 }, |
| 266 { 'target_name': 'sandbox_services_headers', | 267 { 'target_name': 'sandbox_services_headers', |
| 267 'type': 'none', | 268 'type': 'none', |
| 268 'sources': [ | 269 'sources': [ |
| 269 'services/android_arm_ucontext.h', | 270 'services/android_arm_ucontext.h', |
| 270 'services/android_futex.h', | 271 'services/android_futex.h', |
| 271 'services/android_ucontext.h', | 272 'services/android_ucontext.h', |
| 272 'services/android_i386_ucontext.h', | 273 'services/android_i386_ucontext.h', |
| 274 'services/android_mips_ucontext.h', |
| 273 'services/arm_linux_syscalls.h', | 275 'services/arm_linux_syscalls.h', |
| 276 'services/mips_linux_syscalls.h', |
| 274 'services/linux_syscalls.h', | 277 'services/linux_syscalls.h', |
| 275 'services/x86_32_linux_syscalls.h', | 278 'services/x86_32_linux_syscalls.h', |
| 276 'services/x86_64_linux_syscalls.h', | 279 'services/x86_64_linux_syscalls.h', |
| 277 ], | 280 ], |
| 278 'include_dirs': [ | 281 'include_dirs': [ |
| 279 '..', | 282 '..', |
| 280 ], | 283 ], |
| 281 }, | 284 }, |
| 282 { | 285 { |
| 283 # We make this its own target so that it does not interfere | 286 # We make this its own target so that it does not interfere |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 '../sandbox_linux_unittests.isolate', | 363 '../sandbox_linux_unittests.isolate', |
| 361 ], | 364 ], |
| 362 'sources': [ | 365 'sources': [ |
| 363 '../sandbox_linux_unittests.isolate', | 366 '../sandbox_linux_unittests.isolate', |
| 364 ], | 367 ], |
| 365 }, | 368 }, |
| 366 ], | 369 ], |
| 367 }], | 370 }], |
| 368 ], | 371 ], |
| 369 } | 372 } |
| OLD | NEW |