| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 }], | 261 }], |
| 262 ], | 262 ], |
| 263 'include_dirs': [ | 263 'include_dirs': [ |
| 264 '..', | 264 '..', |
| 265 ], | 265 ], |
| 266 }, | 266 }, |
| 267 { 'target_name': 'sandbox_services_headers', | 267 { 'target_name': 'sandbox_services_headers', |
| 268 'type': 'none', | 268 'type': 'none', |
| 269 'sources': [ | 269 'sources': [ |
| 270 'services/android_arm_ucontext.h', | 270 'services/android_arm_ucontext.h', |
| 271 'services/android_arm64_ucontext.h', |
| 271 'services/android_futex.h', | 272 'services/android_futex.h', |
| 272 'services/android_ucontext.h', | 273 'services/android_ucontext.h', |
| 273 'services/android_i386_ucontext.h', | 274 'services/android_i386_ucontext.h', |
| 274 'services/android_mips_ucontext.h', | 275 'services/android_mips_ucontext.h', |
| 275 'services/arm_linux_syscalls.h', | 276 'services/arm_linux_syscalls.h', |
| 277 'services/arm64_linux_syscalls.h', |
| 276 'services/mips_linux_syscalls.h', | 278 'services/mips_linux_syscalls.h', |
| 277 'services/linux_syscalls.h', | 279 'services/linux_syscalls.h', |
| 278 'services/x86_32_linux_syscalls.h', | 280 'services/x86_32_linux_syscalls.h', |
| 279 'services/x86_64_linux_syscalls.h', | 281 'services/x86_64_linux_syscalls.h', |
| 280 ], | 282 ], |
| 281 'include_dirs': [ | 283 'include_dirs': [ |
| 282 '..', | 284 '..', |
| 283 ], | 285 ], |
| 284 }, | 286 }, |
| 285 { | 287 { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 '../sandbox_linux_unittests.isolate', | 365 '../sandbox_linux_unittests.isolate', |
| 364 ], | 366 ], |
| 365 'sources': [ | 367 'sources': [ |
| 366 '../sandbox_linux_unittests.isolate', | 368 '../sandbox_linux_unittests.isolate', |
| 367 ], | 369 ], |
| 368 }, | 370 }, |
| 369 ], | 371 ], |
| 370 }], | 372 }], |
| 371 ], | 373 ], |
| 372 } | 374 } |
| OLD | NEW |