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

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 299743002: Add domain-specific language for BPF policies (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup CHECK statements a little bit 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="linux"', { 8 ['OS=="linux"', {
9 'compile_suid_client': 1, 9 'compile_suid_client': 1,
10 'compile_credentials': 1, 10 'compile_credentials': 1,
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'include_dirs': [ 151 'include_dirs': [
152 '../..', 152 '../..',
153 ], 153 ],
154 }, 154 },
155 { 155 {
156 'target_name': 'seccomp_bpf_helpers', 156 'target_name': 'seccomp_bpf_helpers',
157 'type': '<(component)', 157 'type': '<(component)',
158 'sources': [ 158 'sources': [
159 'seccomp-bpf-helpers/baseline_policy.cc', 159 'seccomp-bpf-helpers/baseline_policy.cc',
160 'seccomp-bpf-helpers/baseline_policy.h', 160 'seccomp-bpf-helpers/baseline_policy.h',
161 'seccomp-bpf-helpers/bpf_dsl.cc',
jln (very slow on Chromium) 2014/06/24 00:03:52 Add to gn file as well. (Bots would complain autom
mdempsky 2014/06/24 00:55:40 Done.
162 'seccomp-bpf-helpers/bpf_dsl.h',
161 'seccomp-bpf-helpers/sigsys_handlers.cc', 163 'seccomp-bpf-helpers/sigsys_handlers.cc',
162 'seccomp-bpf-helpers/sigsys_handlers.h', 164 'seccomp-bpf-helpers/sigsys_handlers.h',
163 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', 165 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc',
164 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', 166 'seccomp-bpf-helpers/syscall_parameters_restrictions.h',
165 'seccomp-bpf-helpers/syscall_sets.cc', 167 'seccomp-bpf-helpers/syscall_sets.cc',
166 'seccomp-bpf-helpers/syscall_sets.h', 168 'seccomp-bpf-helpers/syscall_sets.h',
167 ], 169 ],
168 'dependencies': [ 170 'dependencies': [
169 '../base/base.gyp:base', 171 '../base/base.gyp:base',
170 'seccomp_bpf', 172 'seccomp_bpf',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 }, 333 },
332 'dependencies': [ 334 'dependencies': [
333 'sandbox_linux_jni_unittests', 335 'sandbox_linux_jni_unittests',
334 ], 336 ],
335 'includes': [ '../../build/apk_test.gypi' ], 337 'includes': [ '../../build/apk_test.gypi' ],
336 } 338 }
337 ], 339 ],
338 }], 340 }],
339 ], 341 ],
340 } 342 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | sandbox/linux/sandbox_linux_test_sources.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698