| 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, |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 ], | 267 ], |
| 268 }], | 268 }], |
| 269 ], | 269 ], |
| 270 'include_dirs': [ | 270 'include_dirs': [ |
| 271 '..', | 271 '..', |
| 272 ], | 272 ], |
| 273 }, | 273 }, |
| 274 { 'target_name': 'sandbox_services_headers', | 274 { 'target_name': 'sandbox_services_headers', |
| 275 'type': 'none', | 275 'type': 'none', |
| 276 'sources': [ | 276 'sources': [ |
| 277 'services/android_arm_ucontext.h', | 277 'system_headers/android_arm_ucontext.h', |
| 278 'services/android_arm64_ucontext.h', | 278 'system_headers/android_arm64_ucontext.h', |
| 279 'services/android_futex.h', | 279 'system_headers/android_futex.h', |
| 280 'services/android_ucontext.h', | 280 'system_headers/android_ucontext.h', |
| 281 'services/android_i386_ucontext.h', | 281 'system_headers/android_i386_ucontext.h', |
| 282 'services/android_mips_ucontext.h', | 282 'system_headers/android_mips_ucontext.h', |
| 283 'services/arm_linux_syscalls.h', | 283 'system_headers/arm_linux_syscalls.h', |
| 284 'services/arm64_linux_syscalls.h', | 284 'system_headers/arm64_linux_syscalls.h', |
| 285 'services/mips_linux_syscalls.h', | 285 'system_headers/mips_linux_syscalls.h', |
| 286 'services/linux_syscalls.h', | 286 'system_headers/linux_syscalls.h', |
| 287 'services/x86_32_linux_syscalls.h', | 287 'system_headers/x86_32_linux_syscalls.h', |
| 288 'services/x86_64_linux_syscalls.h', | 288 'system_headers/x86_64_linux_syscalls.h', |
| 289 ], | 289 ], |
| 290 'include_dirs': [ | 290 'include_dirs': [ |
| 291 '..', | 291 '..', |
| 292 ], | 292 ], |
| 293 }, | 293 }, |
| 294 { | 294 { |
| 295 # We make this its own target so that it does not interfere | 295 # We make this its own target so that it does not interfere |
| 296 # with our tests. | 296 # with our tests. |
| 297 'target_name': 'libc_urandom_override', | 297 'target_name': 'libc_urandom_override', |
| 298 'type': 'static_library', | 298 'type': 'static_library', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 '../../build/isolate.gypi', | 390 '../../build/isolate.gypi', |
| 391 ], | 391 ], |
| 392 'sources': [ | 392 'sources': [ |
| 393 '../sandbox_linux_unittests.isolate', | 393 '../sandbox_linux_unittests.isolate', |
| 394 ], | 394 ], |
| 395 }, | 395 }, |
| 396 ], | 396 ], |
| 397 }], | 397 }], |
| 398 ], | 398 ], |
| 399 } | 399 } |
| OLD | NEW |