| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 } | 64 } |
| 65 } | 65 } |
| 66 | 66 |
| 67 # The main sandboxing test target. | 67 # The main sandboxing test target. |
| 68 test("sandbox_linux_unittests") { | 68 test("sandbox_linux_unittests") { |
| 69 sources = [ | 69 sources = [ |
| 70 "services/scoped_process_unittest.cc", | 70 "services/scoped_process_unittest.cc", |
| 71 "services/syscall_wrappers_unittest.cc", | 71 "services/syscall_wrappers_unittest.cc", |
| 72 "services/thread_helpers_unittests.cc", | 72 "services/thread_helpers_unittests.cc", |
| 73 "services/yama_unittests.cc", | 73 "services/yama_unittests.cc", |
| 74 "syscall_broker/broker_file_permission_unittest.cc", |
| 74 "syscall_broker/broker_process_unittest.cc", | 75 "syscall_broker/broker_process_unittest.cc", |
| 75 "tests/main.cc", | 76 "tests/main.cc", |
| 76 "tests/scoped_temporary_file.cc", | 77 "tests/scoped_temporary_file.cc", |
| 77 "tests/scoped_temporary_file.h", | 78 "tests/scoped_temporary_file.h", |
| 78 "tests/scoped_temporary_file_unittest.cc", | 79 "tests/scoped_temporary_file_unittest.cc", |
| 79 "tests/test_utils_unittest.cc", | 80 "tests/test_utils_unittest.cc", |
| 80 "tests/unit_tests_unittest.cc", | 81 "tests/unit_tests_unittest.cc", |
| 81 ] | 82 ] |
| 82 | 83 |
| 83 deps = [ | 84 deps = [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "services/syscall_wrappers.h", | 229 "services/syscall_wrappers.h", |
| 229 "services/thread_helpers.cc", | 230 "services/thread_helpers.cc", |
| 230 "services/thread_helpers.h", | 231 "services/thread_helpers.h", |
| 231 "services/yama.h", | 232 "services/yama.h", |
| 232 "services/yama.cc", | 233 "services/yama.cc", |
| 233 "syscall_broker/broker_channel.cc", | 234 "syscall_broker/broker_channel.cc", |
| 234 "syscall_broker/broker_channel.h", | 235 "syscall_broker/broker_channel.h", |
| 235 "syscall_broker/broker_client.cc", | 236 "syscall_broker/broker_client.cc", |
| 236 "syscall_broker/broker_client.h", | 237 "syscall_broker/broker_client.h", |
| 237 "syscall_broker/broker_common.h", | 238 "syscall_broker/broker_common.h", |
| 239 "syscall_broker/broker_file_permission.cc", |
| 240 "syscall_broker/broker_file_permission.h", |
| 238 "syscall_broker/broker_host.cc", | 241 "syscall_broker/broker_host.cc", |
| 239 "syscall_broker/broker_host.h", | 242 "syscall_broker/broker_host.h", |
| 240 "syscall_broker/broker_policy.cc", | 243 "syscall_broker/broker_policy.cc", |
| 241 "syscall_broker/broker_policy.h", | 244 "syscall_broker/broker_policy.h", |
| 242 "syscall_broker/broker_process.cc", | 245 "syscall_broker/broker_process.cc", |
| 243 "syscall_broker/broker_process.h", | 246 "syscall_broker/broker_process.h", |
| 244 ] | 247 ] |
| 245 | 248 |
| 246 defines = [ "SANDBOX_IMPLEMENTATION" ] | 249 defines = [ "SANDBOX_IMPLEMENTATION" ] |
| 247 | 250 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 # 'type': 'none', | 331 # 'type': 'none', |
| 329 # 'variables': { | 332 # 'variables': { |
| 330 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 333 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 331 # }, | 334 # }, |
| 332 # 'dependencies': [ | 335 # 'dependencies': [ |
| 333 # 'sandbox_linux_jni_unittests', | 336 # 'sandbox_linux_jni_unittests', |
| 334 # ], | 337 # ], |
| 335 # 'includes': [ '../../build/apk_test.gypi' ], | 338 # 'includes': [ '../../build/apk_test.gypi' ], |
| 336 # } | 339 # } |
| 337 } | 340 } |
| OLD | NEW |