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

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: Address nits from Jorge. Created 6 years 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
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | sandbox/linux/bpf_dsl/bpf_dsl_more_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 "seccomp-bpf/syscall_iterator.cc", 166 "seccomp-bpf/syscall_iterator.cc",
167 "seccomp-bpf/syscall_iterator.h", 167 "seccomp-bpf/syscall_iterator.h",
168 "seccomp-bpf/trap.cc", 168 "seccomp-bpf/trap.cc",
169 "seccomp-bpf/trap.h", 169 "seccomp-bpf/trap.h",
170 "seccomp-bpf/verifier.cc", 170 "seccomp-bpf/verifier.cc",
171 "seccomp-bpf/verifier.h", 171 "seccomp-bpf/verifier.h",
172 ] 172 ]
173 defines = [ "SANDBOX_IMPLEMENTATION" ] 173 defines = [ "SANDBOX_IMPLEMENTATION" ]
174 174
175 deps = [ 175 deps = [
176 ":sandbox_services",
176 ":sandbox_services_headers", 177 ":sandbox_services_headers",
177 "//base", 178 "//base",
178 ] 179 ]
179 } 180 }
180 181
181 component("seccomp_bpf_helpers") { 182 component("seccomp_bpf_helpers") {
182 sources = [ 183 sources = [
183 "seccomp-bpf-helpers/baseline_policy.cc", 184 "seccomp-bpf-helpers/baseline_policy.cc",
184 "seccomp-bpf-helpers/baseline_policy.h", 185 "seccomp-bpf-helpers/baseline_policy.h",
185 "seccomp-bpf-helpers/sigsys_handlers.cc", 186 "seccomp-bpf-helpers/sigsys_handlers.cc",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 # 'type': 'none', 329 # 'type': 'none',
329 # 'variables': { 330 # 'variables': {
330 # 'test_suite_name': 'sandbox_linux_jni_unittests', 331 # 'test_suite_name': 'sandbox_linux_jni_unittests',
331 # }, 332 # },
332 # 'dependencies': [ 333 # 'dependencies': [
333 # 'sandbox_linux_jni_unittests', 334 # 'sandbox_linux_jni_unittests',
334 # ], 335 # ],
335 # 'includes': [ '../../build/apk_test.gypi' ], 336 # 'includes': [ '../../build/apk_test.gypi' ],
336 # } 337 # }
337 } 338 }
OLDNEW
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | sandbox/linux/bpf_dsl/bpf_dsl_more_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698