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

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

Issue 919203002: Linux Sandbox: add resource limits to NaCl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable on sanitizers. Created 5 years, 10 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 ['exclude', '-fsanitize'], 216 ['exclude', '-fsanitize'],
217 ], 217 ],
218 }, 218 },
219 { 'target_name': 'sandbox_services', 219 { 'target_name': 'sandbox_services',
220 'type': '<(component)', 220 'type': '<(component)',
221 'sources': [ 221 'sources': [
222 'services/init_process_reaper.cc', 222 'services/init_process_reaper.cc',
223 'services/init_process_reaper.h', 223 'services/init_process_reaper.h',
224 'services/proc_util.cc', 224 'services/proc_util.cc',
225 'services/proc_util.h', 225 'services/proc_util.h',
226 'services/resource_limits.cc',
227 'services/resource_limits.h',
226 'services/scoped_process.cc', 228 'services/scoped_process.cc',
227 'services/scoped_process.h', 229 'services/scoped_process.h',
228 'services/syscall_wrappers.cc', 230 'services/syscall_wrappers.cc',
229 'services/syscall_wrappers.h', 231 'services/syscall_wrappers.h',
230 'services/thread_helpers.cc', 232 'services/thread_helpers.cc',
231 'services/thread_helpers.h', 233 'services/thread_helpers.h',
232 'services/yama.cc', 234 'services/yama.cc',
233 'services/yama.h', 235 'services/yama.h',
234 'syscall_broker/broker_channel.cc', 236 'syscall_broker/broker_channel.cc',
235 'syscall_broker/broker_channel.h', 237 'syscall_broker/broker_channel.h',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 '../../build/isolate.gypi', 392 '../../build/isolate.gypi',
391 ], 393 ],
392 'sources': [ 394 'sources': [
393 '../sandbox_linux_unittests.isolate', 395 '../sandbox_linux_unittests.isolate',
394 ], 396 ],
395 }, 397 },
396 ], 398 ],
397 }], 399 }],
398 ], 400 ],
399 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698