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_utils.cc', |
| 258 'services/namespace_utils.h', |
257 'services/proc_util.cc', | 259 'services/proc_util.cc', |
258 'services/proc_util.h', | 260 'services/proc_util.h', |
259 ], | 261 ], |
260 'dependencies': [ | 262 'dependencies': [ |
261 # for capabilities.cc. | 263 # for capabilities.cc. |
262 '../build/linux/system.gyp:libcap', | 264 '../build/linux/system.gyp:libcap', |
263 ], | 265 ], |
264 }], | 266 }], |
265 ], | 267 ], |
266 'include_dirs': [ | 268 'include_dirs': [ |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 '../../build/isolate.gypi', | 386 '../../build/isolate.gypi', |
385 ], | 387 ], |
386 'sources': [ | 388 'sources': [ |
387 '../sandbox_linux_unittests.isolate', | 389 '../sandbox_linux_unittests.isolate', |
388 ], | 390 ], |
389 }, | 391 }, |
390 ], | 392 ], |
391 }], | 393 }], |
392 ], | 394 ], |
393 } | 395 } |
OLD | NEW |