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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'cflags/': [ | 211 'cflags/': [ |
212 ['exclude', '-fsanitize'], | 212 ['exclude', '-fsanitize'], |
213 ], | 213 ], |
214 'ldflags/': [ | 214 'ldflags/': [ |
215 ['exclude', '-fsanitize'], | 215 ['exclude', '-fsanitize'], |
216 ], | 216 ], |
217 }, | 217 }, |
218 { 'target_name': 'sandbox_services', | 218 { 'target_name': 'sandbox_services', |
219 'type': '<(component)', | 219 'type': '<(component)', |
220 'sources': [ | 220 'sources': [ |
221 'services/broker_process.cc', | |
222 'services/broker_process.h', | |
223 'services/init_process_reaper.cc', | 221 'services/init_process_reaper.cc', |
224 'services/init_process_reaper.h', | 222 'services/init_process_reaper.h', |
225 'services/scoped_process.cc', | 223 'services/scoped_process.cc', |
226 'services/scoped_process.h', | 224 'services/scoped_process.h', |
227 'services/thread_helpers.cc', | 225 'services/thread_helpers.cc', |
228 'services/thread_helpers.h', | 226 'services/thread_helpers.h', |
| 227 'services/yama.cc', |
229 'services/yama.h', | 228 'services/yama.h', |
230 'services/yama.cc', | 229 'syscall_broker/broker_client.cc', |
| 230 'syscall_broker/broker_client.h', |
| 231 'syscall_broker/broker_common.h', |
| 232 'syscall_broker/broker_host.cc', |
| 233 'syscall_broker/broker_host.h', |
| 234 'syscall_broker/broker_policy.cc', |
| 235 'syscall_broker/broker_policy.h', |
| 236 'syscall_broker/broker_process.cc', |
| 237 'syscall_broker/broker_process.h', |
231 ], | 238 ], |
232 'dependencies': [ | 239 'dependencies': [ |
233 '../base/base.gyp:base', | 240 '../base/base.gyp:base', |
234 ], | 241 ], |
235 'defines': [ | 242 'defines': [ |
236 'SANDBOX_IMPLEMENTATION', | 243 'SANDBOX_IMPLEMENTATION', |
237 ], | 244 ], |
238 'conditions': [ | 245 'conditions': [ |
239 ['compile_credentials==1', { | 246 ['compile_credentials==1', { |
240 'sources': [ | 247 'sources': [ |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 '../../build/isolate.gypi', | 375 '../../build/isolate.gypi', |
369 ], | 376 ], |
370 'sources': [ | 377 'sources': [ |
371 '../sandbox_linux_unittests.isolate', | 378 '../sandbox_linux_unittests.isolate', |
372 ], | 379 ], |
373 }, | 380 }, |
374 ], | 381 ], |
375 }], | 382 }], |
376 ], | 383 ], |
377 } | 384 } |
OLD | NEW |