| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 compile_suid_client = is_linux | 8 compile_suid_client = is_linux |
| 9 | 9 |
| 10 compile_credentials = is_linux | 10 compile_credentials = is_linux |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 } | 236 } |
| 237 | 237 |
| 238 deps = [ | 238 deps = [ |
| 239 "//base", | 239 "//base", |
| 240 ] | 240 ] |
| 241 } | 241 } |
| 242 | 242 |
| 243 source_set("sandbox_services_headers") { | 243 source_set("sandbox_services_headers") { |
| 244 sources = [ | 244 sources = [ |
| 245 "services/android_arm_ucontext.h", | 245 "services/android_arm_ucontext.h", |
| 246 "services/android_futex.h", |
| 246 "services/android_ucontext.h", | 247 "services/android_ucontext.h", |
| 247 "services/android_i386_ucontext.h", | 248 "services/android_i386_ucontext.h", |
| 248 "services/arm_linux_syscalls.h", | 249 "services/arm_linux_syscalls.h", |
| 249 "services/linux_syscalls.h", | 250 "services/linux_syscalls.h", |
| 250 "services/x86_32_linux_syscalls.h", | 251 "services/x86_32_linux_syscalls.h", |
| 251 "services/x86_64_linux_syscalls.h", | 252 "services/x86_64_linux_syscalls.h", |
| 252 ] | 253 ] |
| 253 } | 254 } |
| 254 | 255 |
| 255 # We make this its own target so that it does not interfere with our tests. | 256 # We make this its own target so that it does not interfere with our tests. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 # 'type': 'none', | 305 # 'type': 'none', |
| 305 # 'variables': { | 306 # 'variables': { |
| 306 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 307 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 307 # }, | 308 # }, |
| 308 # 'dependencies': [ | 309 # 'dependencies': [ |
| 309 # 'sandbox_linux_jni_unittests', | 310 # 'sandbox_linux_jni_unittests', |
| 310 # ], | 311 # ], |
| 311 # 'includes': [ '../../build/apk_test.gypi' ], | 312 # 'includes': [ '../../build/apk_test.gypi' ], |
| 312 # } | 313 # } |
| 313 } | 314 } |
| OLD | NEW |