| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 '../..', | 180 '../..', |
| 181 ], | 181 ], |
| 182 }, | 182 }, |
| 183 { | 183 { |
| 184 # The setuid sandbox, for Linux | 184 # The setuid sandbox, for Linux |
| 185 'target_name': 'chrome_sandbox', | 185 'target_name': 'chrome_sandbox', |
| 186 'type': 'executable', | 186 'type': 'executable', |
| 187 'sources': [ | 187 'sources': [ |
| 188 'suid/common/sandbox.h', | 188 'suid/common/sandbox.h', |
| 189 'suid/common/suid_unsafe_environment_variables.h', | 189 'suid/common/suid_unsafe_environment_variables.h', |
| 190 'suid/linux_util.c', | |
| 191 'suid/linux_util.h', | 190 'suid/linux_util.h', |
| 192 'suid/process_util.h', | 191 'suid/process_util.h', |
| 193 'suid/process_util_linux.c', | 192 'suid/process_util_linux.c', |
| 194 'suid/sandbox.c', | 193 'suid/sandbox.c', |
| 195 ], | 194 ], |
| 196 'cflags': [ | 195 'cflags': [ |
| 197 # For ULLONG_MAX | 196 # For ULLONG_MAX |
| 198 '-std=gnu99', | 197 '-std=gnu99', |
| 199 ], | 198 ], |
| 200 'include_dirs': [ | 199 'include_dirs': [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 '../sandbox_linux_unittests.isolate', | 344 '../sandbox_linux_unittests.isolate', |
| 346 ], | 345 ], |
| 347 'sources': [ | 346 'sources': [ |
| 348 '../sandbox_linux_unittests.isolate', | 347 '../sandbox_linux_unittests.isolate', |
| 349 ], | 348 ], |
| 350 }, | 349 }, |
| 351 ], | 350 ], |
| 352 }], | 351 }], |
| 353 ], | 352 ], |
| 354 } | 353 } |
| OLD | NEW |