| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 component("sandbox_services") { | 222 component("sandbox_services") { |
| 223 sources = [ | 223 sources = [ |
| 224 "services/init_process_reaper.cc", | 224 "services/init_process_reaper.cc", |
| 225 "services/init_process_reaper.h", | 225 "services/init_process_reaper.h", |
| 226 "services/scoped_process.cc", | 226 "services/scoped_process.cc", |
| 227 "services/scoped_process.h", | 227 "services/scoped_process.h", |
| 228 "services/thread_helpers.cc", | 228 "services/thread_helpers.cc", |
| 229 "services/thread_helpers.h", | 229 "services/thread_helpers.h", |
| 230 "services/yama.h", | 230 "services/yama.h", |
| 231 "services/yama.cc", | 231 "services/yama.cc", |
| 232 "syscall_broker/broker_channel.cc", |
| 233 "syscall_broker/broker_channel.h", |
| 232 "syscall_broker/broker_client.cc", | 234 "syscall_broker/broker_client.cc", |
| 233 "syscall_broker/broker_client.h", | 235 "syscall_broker/broker_client.h", |
| 234 "syscall_broker/broker_common.h", | 236 "syscall_broker/broker_common.h", |
| 235 "syscall_broker/broker_host.cc", | 237 "syscall_broker/broker_host.cc", |
| 236 "syscall_broker/broker_host.h", | 238 "syscall_broker/broker_host.h", |
| 237 "syscall_broker/broker_policy.cc", | 239 "syscall_broker/broker_policy.cc", |
| 238 "syscall_broker/broker_policy.h", | 240 "syscall_broker/broker_policy.h", |
| 239 "syscall_broker/broker_process.cc", | 241 "syscall_broker/broker_process.cc", |
| 240 "syscall_broker/broker_process.h", | 242 "syscall_broker/broker_process.h", |
| 241 ] | 243 ] |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 # 'type': 'none', | 327 # 'type': 'none', |
| 326 # 'variables': { | 328 # 'variables': { |
| 327 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 329 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 328 # }, | 330 # }, |
| 329 # 'dependencies': [ | 331 # 'dependencies': [ |
| 330 # 'sandbox_linux_jni_unittests', | 332 # 'sandbox_linux_jni_unittests', |
| 331 # ], | 333 # ], |
| 332 # 'includes': [ '../../build/apk_test.gypi' ], | 334 # 'includes': [ '../../build/apk_test.gypi' ], |
| 333 # } | 335 # } |
| 334 } | 336 } |
| OLD | NEW |