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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 ], | 308 ], |
309 }, | 309 }, |
310 { | 310 { |
311 'target_name': 'suid_sandbox_client', | 311 'target_name': 'suid_sandbox_client', |
312 'type': '<(component)', | 312 'type': '<(component)', |
313 'sources': [ | 313 'sources': [ |
314 'suid/common/sandbox.h', | 314 'suid/common/sandbox.h', |
315 'suid/common/suid_unsafe_environment_variables.h', | 315 'suid/common/suid_unsafe_environment_variables.h', |
316 'suid/client/setuid_sandbox_client.cc', | 316 'suid/client/setuid_sandbox_client.cc', |
317 'suid/client/setuid_sandbox_client.h', | 317 'suid/client/setuid_sandbox_client.h', |
| 318 'suid/client/setuid_sandbox_host.cc', |
| 319 'suid/client/setuid_sandbox_host.h', |
318 ], | 320 ], |
319 'defines': [ | 321 'defines': [ |
320 'SANDBOX_IMPLEMENTATION', | 322 'SANDBOX_IMPLEMENTATION', |
321 ], | 323 ], |
322 'dependencies': [ | 324 'dependencies': [ |
323 '../base/base.gyp:base', | 325 '../base/base.gyp:base', |
324 'sandbox_services', | 326 'sandbox_services', |
325 ], | 327 ], |
326 'include_dirs': [ | 328 'include_dirs': [ |
327 '..', | 329 '..', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 '../../build/isolate.gypi', | 390 '../../build/isolate.gypi', |
389 ], | 391 ], |
390 'sources': [ | 392 'sources': [ |
391 '../sandbox_linux_unittests.isolate', | 393 '../sandbox_linux_unittests.isolate', |
392 ], | 394 ], |
393 }, | 395 }, |
394 ], | 396 ], |
395 }], | 397 }], |
396 ], | 398 ], |
397 } | 399 } |
OLD | NEW |