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

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

Issue 693943003: Update from https://crrev.com/302630 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « sandbox/linux/bpf_dsl/dump_bpf.cc ('k') | sandbox/linux/sandbox_linux_test_sources.gypi » ('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 (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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 }, 116 },
117 { 117 {
118 'target_name': 'seccomp_bpf', 118 'target_name': 'seccomp_bpf',
119 'type': '<(component)', 119 'type': '<(component)',
120 'sources': [ 120 'sources': [
121 'bpf_dsl/bpf_dsl.cc', 121 'bpf_dsl/bpf_dsl.cc',
122 'bpf_dsl/bpf_dsl.h', 122 'bpf_dsl/bpf_dsl.h',
123 'bpf_dsl/bpf_dsl_forward.h', 123 'bpf_dsl/bpf_dsl_forward.h',
124 'bpf_dsl/bpf_dsl_impl.h', 124 'bpf_dsl/bpf_dsl_impl.h',
125 'bpf_dsl/cons.h', 125 'bpf_dsl/cons.h',
126 'bpf_dsl/dump_bpf.cc',
127 'bpf_dsl/dump_bpf.h',
126 'bpf_dsl/policy.cc', 128 'bpf_dsl/policy.cc',
127 'bpf_dsl/policy.h', 129 'bpf_dsl/policy.h',
128 'bpf_dsl/policy_compiler.cc', 130 'bpf_dsl/policy_compiler.cc',
129 'bpf_dsl/policy_compiler.h', 131 'bpf_dsl/policy_compiler.h',
130 'bpf_dsl/trap_registry.h', 132 'bpf_dsl/trap_registry.h',
131 'seccomp-bpf/basicblock.cc', 133 'seccomp-bpf/basicblock.cc',
132 'seccomp-bpf/basicblock.h', 134 'seccomp-bpf/basicblock.h',
133 'seccomp-bpf/codegen.cc', 135 'seccomp-bpf/codegen.cc',
134 'seccomp-bpf/codegen.h', 136 'seccomp-bpf/codegen.h',
135 'seccomp-bpf/die.cc', 137 'seccomp-bpf/die.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'cflags/': [ 213 'cflags/': [
212 ['exclude', '-fsanitize'], 214 ['exclude', '-fsanitize'],
213 ], 215 ],
214 'ldflags/': [ 216 'ldflags/': [
215 ['exclude', '-fsanitize'], 217 ['exclude', '-fsanitize'],
216 ], 218 ],
217 }, 219 },
218 { 'target_name': 'sandbox_services', 220 { 'target_name': 'sandbox_services',
219 'type': '<(component)', 221 'type': '<(component)',
220 'sources': [ 222 'sources': [
221 'services/broker_process.cc',
222 'services/broker_process.h',
223 'services/init_process_reaper.cc', 223 'services/init_process_reaper.cc',
224 'services/init_process_reaper.h', 224 'services/init_process_reaper.h',
225 'services/scoped_process.cc', 225 'services/scoped_process.cc',
226 'services/scoped_process.h', 226 'services/scoped_process.h',
227 'services/thread_helpers.cc', 227 'services/thread_helpers.cc',
228 'services/thread_helpers.h', 228 'services/thread_helpers.h',
229 'services/yama.cc',
229 'services/yama.h', 230 'services/yama.h',
230 'services/yama.cc', 231 'syscall_broker/broker_client.cc',
232 'syscall_broker/broker_client.h',
233 'syscall_broker/broker_common.h',
234 'syscall_broker/broker_host.cc',
235 'syscall_broker/broker_host.h',
236 'syscall_broker/broker_policy.cc',
237 'syscall_broker/broker_policy.h',
238 'syscall_broker/broker_process.cc',
239 'syscall_broker/broker_process.h',
231 ], 240 ],
232 'dependencies': [ 241 'dependencies': [
233 '../base/base.gyp:base', 242 '../base/base.gyp:base',
234 ], 243 ],
235 'defines': [ 244 'defines': [
236 'SANDBOX_IMPLEMENTATION', 245 'SANDBOX_IMPLEMENTATION',
237 ], 246 ],
238 'conditions': [ 247 'conditions': [
239 ['compile_credentials==1', { 248 ['compile_credentials==1', {
240 'sources': [ 249 'sources': [
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 '../../build/isolate.gypi', 377 '../../build/isolate.gypi',
369 ], 378 ],
370 'sources': [ 379 'sources': [
371 '../sandbox_linux_unittests.isolate', 380 '../sandbox_linux_unittests.isolate',
372 ], 381 ],
373 }, 382 },
374 ], 383 ],
375 }], 384 }],
376 ], 385 ],
377 } 386 }
OLDNEW
« no previous file with comments | « sandbox/linux/bpf_dsl/dump_bpf.cc ('k') | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698