Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: sandbox/linux/BUILD.gn

Issue 348853006: Linux sandbox: add test to ensure that pread64 can be forwarded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude Android from new test. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ] 59 ]
60 deps += [ 60 deps += [
61 ":seccomp_bpf", 61 ":seccomp_bpf",
62 ] 62 ]
63 } 63 }
64 } 64 }
65 65
66 # The main sandboxing test target. 66 # The main sandboxing test target.
67 test("sandbox_linux_unittests") { 67 test("sandbox_linux_unittests") {
68 sources = [ 68 sources = [
69 "tests/main.cc",
70 "tests/unit_tests_unittest.cc",
71 "services/broker_process_unittest.cc", 69 "services/broker_process_unittest.cc",
72 "services/scoped_process_unittest.cc", 70 "services/scoped_process_unittest.cc",
73 "services/thread_helpers_unittests.cc", 71 "services/thread_helpers_unittests.cc",
74 "services/yama_unittests.cc", 72 "services/yama_unittests.cc",
73 "tests/main.cc",
74 "tests/scoped_temporary_file.cc",
75 "tests/scoped_temporary_file.h",
76 "tests/scoped_temporary_file_unittest.cc",
77 "tests/unit_tests_unittest.cc",
75 ] 78 ]
76 79
77 deps = [ 80 deps = [
78 ":sandbox", 81 ":sandbox",
79 ":sandbox_linux_test_utils", 82 ":sandbox_linux_test_utils",
80 "//base", 83 "//base",
81 "//base/test:test_support", 84 "//base/test:test_support",
82 "//testing/gtest", 85 "//testing/gtest",
83 ] 86 ]
84 87
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 # 'type': 'none', 308 # 'type': 'none',
306 # 'variables': { 309 # 'variables': {
307 # 'test_suite_name': 'sandbox_linux_jni_unittests', 310 # 'test_suite_name': 'sandbox_linux_jni_unittests',
308 # }, 311 # },
309 # 'dependencies': [ 312 # 'dependencies': [
310 # 'sandbox_linux_jni_unittests', 313 # 'sandbox_linux_jni_unittests',
311 # ], 314 # ],
312 # 'includes': [ '../../build/apk_test.gypi' ], 315 # 'includes': [ '../../build/apk_test.gypi' ],
313 # } 316 # }
314 } 317 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698