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

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

Issue 733303004: Linux sandbox: change API to start the sandbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "seccomp-bpf/syscall_iterator.cc", 164 "seccomp-bpf/syscall_iterator.cc",
165 "seccomp-bpf/syscall_iterator.h", 165 "seccomp-bpf/syscall_iterator.h",
166 "seccomp-bpf/trap.cc", 166 "seccomp-bpf/trap.cc",
167 "seccomp-bpf/trap.h", 167 "seccomp-bpf/trap.h",
168 "seccomp-bpf/verifier.cc", 168 "seccomp-bpf/verifier.cc",
169 "seccomp-bpf/verifier.h", 169 "seccomp-bpf/verifier.h",
170 ] 170 ]
171 defines = [ "SANDBOX_IMPLEMENTATION" ] 171 defines = [ "SANDBOX_IMPLEMENTATION" ]
172 172
173 deps = [ 173 deps = [
174 ":sandbox_services",
174 ":sandbox_services_headers", 175 ":sandbox_services_headers",
175 "//base", 176 "//base",
176 ] 177 ]
177 } 178 }
178 179
179 component("seccomp_bpf_helpers") { 180 component("seccomp_bpf_helpers") {
180 sources = [ 181 sources = [
181 "seccomp-bpf-helpers/baseline_policy.cc", 182 "seccomp-bpf-helpers/baseline_policy.cc",
182 "seccomp-bpf-helpers/baseline_policy.h", 183 "seccomp-bpf-helpers/baseline_policy.h",
183 "seccomp-bpf-helpers/sigsys_handlers.cc", 184 "seccomp-bpf-helpers/sigsys_handlers.cc",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 # 'type': 'none', 327 # 'type': 'none',
327 # 'variables': { 328 # 'variables': {
328 # 'test_suite_name': 'sandbox_linux_jni_unittests', 329 # 'test_suite_name': 'sandbox_linux_jni_unittests',
329 # }, 330 # },
330 # 'dependencies': [ 331 # 'dependencies': [
331 # 'sandbox_linux_jni_unittests', 332 # 'sandbox_linux_jni_unittests',
332 # ], 333 # ],
333 # 'includes': [ '../../build/apk_test.gypi' ], 334 # 'includes': [ '../../build/apk_test.gypi' ],
334 # } 335 # }
335 } 336 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698