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

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: Add explicit virtual destructors to test policies Created 6 years, 5 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',
162 'seccomp-bpf-helpers/bpf_dsl.h',
163 'seccomp-bpf-helpers/cons.h',
161 'seccomp-bpf-helpers/sigsys_handlers.cc', 164 'seccomp-bpf-helpers/sigsys_handlers.cc',
162 'seccomp-bpf-helpers/sigsys_handlers.h', 165 'seccomp-bpf-helpers/sigsys_handlers.h',
163 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', 166 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc',
164 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', 167 'seccomp-bpf-helpers/syscall_parameters_restrictions.h',
165 'seccomp-bpf-helpers/syscall_sets.cc', 168 'seccomp-bpf-helpers/syscall_sets.cc',
166 'seccomp-bpf-helpers/syscall_sets.h', 169 'seccomp-bpf-helpers/syscall_sets.h',
167 ], 170 ],
168 'dependencies': [ 171 'dependencies': [
169 '../base/base.gyp:base', 172 '../base/base.gyp:base',
170 'seccomp_bpf', 173 'seccomp_bpf',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 '../sandbox_linux_unittests.isolate', 360 '../sandbox_linux_unittests.isolate',
358 ], 361 ],
359 'sources': [ 362 'sources': [
360 '../sandbox_linux_unittests.isolate', 363 '../sandbox_linux_unittests.isolate',
361 ], 364 ],
362 }, 365 },
363 ], 366 ],
364 }], 367 }],
365 ], 368 ],
366 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698