| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 '../base/base.gyp:base', | 194 '../base/base.gyp:base', |
| 195 'sandbox_services', | 195 'sandbox_services', |
| 196 'seccomp_bpf', | 196 'seccomp_bpf', |
| 197 ], | 197 ], |
| 198 'defines': [ | 198 'defines': [ |
| 199 'SANDBOX_IMPLEMENTATION', | 199 'SANDBOX_IMPLEMENTATION', |
| 200 ], | 200 ], |
| 201 'include_dirs': [ | 201 'include_dirs': [ |
| 202 '../..', | 202 '../..', |
| 203 ], | 203 ], |
| 204 'conditions': [ |
| 205 ['use_ozone==1', { |
| 206 'dependencies': [ |
| 207 '../build/linux/system.gyp:drmheader', |
| 208 ], |
| 209 }], |
| 210 ], |
| 204 }, | 211 }, |
| 205 { | 212 { |
| 206 # The setuid sandbox, for Linux | 213 # The setuid sandbox, for Linux |
| 207 'target_name': 'chrome_sandbox', | 214 'target_name': 'chrome_sandbox', |
| 208 'type': 'executable', | 215 'type': 'executable', |
| 209 'sources': [ | 216 'sources': [ |
| 210 'suid/common/sandbox.h', | 217 'suid/common/sandbox.h', |
| 211 'suid/common/suid_unsafe_environment_variables.h', | 218 'suid/common/suid_unsafe_environment_variables.h', |
| 212 'suid/process_util.h', | 219 'suid/process_util.h', |
| 213 'suid/process_util_linux.c', | 220 'suid/process_util_linux.c', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 '../../build/isolate.gypi', | 414 '../../build/isolate.gypi', |
| 408 ], | 415 ], |
| 409 'sources': [ | 416 'sources': [ |
| 410 '../sandbox_linux_unittests.isolate', | 417 '../sandbox_linux_unittests.isolate', |
| 411 ], | 418 ], |
| 412 }, | 419 }, |
| 413 ], | 420 ], |
| 414 }], | 421 }], |
| 415 ], | 422 ], |
| 416 } | 423 } |
| OLD | NEW |