OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |