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

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

Issue 180783019: [Android] Define a baseline seccomp-bpf sandbox policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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 (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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'include_dirs': [ 113 'include_dirs': [
114 '../..', 114 '../..',
115 ], 115 ],
116 }, 116 },
117 { 117 {
118 'target_name': 'seccomp_bpf_helpers', 118 'target_name': 'seccomp_bpf_helpers',
119 'type': 'static_library', 119 'type': 'static_library',
120 'sources': [ 120 'sources': [
121 'seccomp-bpf-helpers/baseline_policy.cc', 121 'seccomp-bpf-helpers/baseline_policy.cc',
122 'seccomp-bpf-helpers/baseline_policy.h', 122 'seccomp-bpf-helpers/baseline_policy.h',
123 'seccomp-bpf-helpers/baseline_policy_android.cc',
124 'seccomp-bpf-helpers/baseline_policy_android.h',
123 'seccomp-bpf-helpers/sigsys_handlers.cc', 125 'seccomp-bpf-helpers/sigsys_handlers.cc',
124 'seccomp-bpf-helpers/sigsys_handlers.h', 126 'seccomp-bpf-helpers/sigsys_handlers.h',
125 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', 127 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc',
126 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', 128 'seccomp-bpf-helpers/syscall_parameters_restrictions.h',
127 'seccomp-bpf-helpers/syscall_sets.cc', 129 'seccomp-bpf-helpers/syscall_sets.cc',
128 'seccomp-bpf-helpers/syscall_sets.h', 130 'seccomp-bpf-helpers/syscall_sets.h',
129 ], 131 ],
130 'dependencies': [ 132 'dependencies': [
131 ], 133 ],
132 'include_dirs': [ 134 'include_dirs': [
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 }, 285 },
284 'dependencies': [ 286 'dependencies': [
285 'sandbox_linux_jni_unittests', 287 'sandbox_linux_jni_unittests',
286 ], 288 ],
287 'includes': [ '../../build/apk_test.gypi' ], 289 'includes': [ '../../build/apk_test.gypi' ],
288 } 290 }
289 ], 291 ],
290 }], 292 }],
291 ], 293 ],
292 } 294 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698