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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 ['exclude', '-fsanitize'], | 218 ['exclude', '-fsanitize'], |
219 ], | 219 ], |
220 }, | 220 }, |
221 { 'target_name': 'sandbox_services', | 221 { 'target_name': 'sandbox_services', |
222 'type': '<(component)', | 222 'type': '<(component)', |
223 'sources': [ | 223 'sources': [ |
224 'services/init_process_reaper.cc', | 224 'services/init_process_reaper.cc', |
225 'services/init_process_reaper.h', | 225 'services/init_process_reaper.h', |
226 'services/proc_util.cc', | 226 'services/proc_util.cc', |
227 'services/proc_util.h', | 227 'services/proc_util.h', |
| 228 'services/resource_limits.cc', |
| 229 'services/resource_limits.h', |
228 'services/scoped_process.cc', | 230 'services/scoped_process.cc', |
229 'services/scoped_process.h', | 231 'services/scoped_process.h', |
230 'services/syscall_wrappers.cc', | 232 'services/syscall_wrappers.cc', |
231 'services/syscall_wrappers.h', | 233 'services/syscall_wrappers.h', |
232 'services/thread_helpers.cc', | 234 'services/thread_helpers.cc', |
233 'services/thread_helpers.h', | 235 'services/thread_helpers.h', |
234 'services/yama.cc', | 236 'services/yama.cc', |
235 'services/yama.h', | 237 'services/yama.h', |
236 'syscall_broker/broker_channel.cc', | 238 'syscall_broker/broker_channel.cc', |
237 'syscall_broker/broker_channel.h', | 239 'syscall_broker/broker_channel.h', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 '../../build/isolate.gypi', | 395 '../../build/isolate.gypi', |
394 ], | 396 ], |
395 'sources': [ | 397 'sources': [ |
396 '../sandbox_linux_unittests.isolate', | 398 '../sandbox_linux_unittests.isolate', |
397 ], | 399 ], |
398 }, | 400 }, |
399 ], | 401 ], |
400 }], | 402 }], |
401 ], | 403 ], |
402 } | 404 } |
OLD | NEW |