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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 '../base/base.gyp:base', | 247 '../base/base.gyp:base', |
248 ], | 248 ], |
249 'defines': [ | 249 'defines': [ |
250 'SANDBOX_IMPLEMENTATION', | 250 'SANDBOX_IMPLEMENTATION', |
251 ], | 251 ], |
252 'conditions': [ | 252 'conditions': [ |
253 ['compile_credentials==1', { | 253 ['compile_credentials==1', { |
254 'sources': [ | 254 'sources': [ |
255 'services/credentials.cc', | 255 'services/credentials.cc', |
256 'services/credentials.h', | 256 'services/credentials.h', |
| 257 'services/namespace_sandbox.cc', |
| 258 'services/namespace_sandbox.h', |
257 'services/namespace_utils.cc', | 259 'services/namespace_utils.cc', |
258 'services/namespace_utils.h', | 260 'services/namespace_utils.h', |
259 'services/proc_util.cc', | 261 'services/proc_util.cc', |
260 'services/proc_util.h', | 262 'services/proc_util.h', |
261 ], | 263 ], |
262 'dependencies': [ | 264 'dependencies': [ |
263 # for capabilities.cc. | 265 # for capabilities.cc. |
264 '../build/linux/system.gyp:libcap', | 266 '../build/linux/system.gyp:libcap', |
265 ], | 267 ], |
266 }], | 268 }], |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 '../../build/isolate.gypi', | 388 '../../build/isolate.gypi', |
387 ], | 389 ], |
388 'sources': [ | 390 'sources': [ |
389 '../sandbox_linux_unittests.isolate', | 391 '../sandbox_linux_unittests.isolate', |
390 ], | 392 ], |
391 }, | 393 }, |
392 ], | 394 ], |
393 }], | 395 }], |
394 ], | 396 ], |
395 } | 397 } |
OLD | NEW |