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

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

Issue 588143007: sandbox: Convert remaining legacy tests to use policy classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another style fix (grr clang-format) Created 6 years, 2 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
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 "seccomp-bpf/codegen.cc", 146 "seccomp-bpf/codegen.cc",
147 "seccomp-bpf/codegen.h", 147 "seccomp-bpf/codegen.h",
148 "seccomp-bpf/die.cc", 148 "seccomp-bpf/die.cc",
149 "seccomp-bpf/die.h", 149 "seccomp-bpf/die.h",
150 "seccomp-bpf/errorcode.cc", 150 "seccomp-bpf/errorcode.cc",
151 "seccomp-bpf/errorcode.h", 151 "seccomp-bpf/errorcode.h",
152 "seccomp-bpf/instruction.h", 152 "seccomp-bpf/instruction.h",
153 "seccomp-bpf/linux_seccomp.h", 153 "seccomp-bpf/linux_seccomp.h",
154 "seccomp-bpf/sandbox_bpf.cc", 154 "seccomp-bpf/sandbox_bpf.cc",
155 "seccomp-bpf/sandbox_bpf.h", 155 "seccomp-bpf/sandbox_bpf.h",
156 "seccomp-bpf/sandbox_bpf_compatibility_policy.h",
157 "seccomp-bpf/sandbox_bpf_policy.cc", 156 "seccomp-bpf/sandbox_bpf_policy.cc",
158 "seccomp-bpf/sandbox_bpf_policy.h", 157 "seccomp-bpf/sandbox_bpf_policy.h",
159 "seccomp-bpf/syscall.cc", 158 "seccomp-bpf/syscall.cc",
160 "seccomp-bpf/syscall.h", 159 "seccomp-bpf/syscall.h",
161 "seccomp-bpf/syscall_iterator.cc", 160 "seccomp-bpf/syscall_iterator.cc",
162 "seccomp-bpf/syscall_iterator.h", 161 "seccomp-bpf/syscall_iterator.h",
163 "seccomp-bpf/trap.cc", 162 "seccomp-bpf/trap.cc",
164 "seccomp-bpf/trap.h", 163 "seccomp-bpf/trap.h",
165 "seccomp-bpf/verifier.cc", 164 "seccomp-bpf/verifier.cc",
166 "seccomp-bpf/verifier.h", 165 "seccomp-bpf/verifier.h",
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 # 'type': 'none', 311 # 'type': 'none',
313 # 'variables': { 312 # 'variables': {
314 # 'test_suite_name': 'sandbox_linux_jni_unittests', 313 # 'test_suite_name': 'sandbox_linux_jni_unittests',
315 # }, 314 # },
316 # 'dependencies': [ 315 # 'dependencies': [
317 # 'sandbox_linux_jni_unittests', 316 # 'sandbox_linux_jni_unittests',
318 # ], 317 # ],
319 # 'includes': [ '../../build/apk_test.gypi' ], 318 # 'includes': [ '../../build/apk_test.gypi' ],
320 # } 319 # }
321 } 320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698