| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import os | 6 import os |
| 7 | 7 |
| 8 from common import chromium_utils | 8 from common import chromium_utils |
| 9 | 9 |
| 10 from master import master_utils | 10 from master import master_utils |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ('v8_win_nosnap_shared_compile_rel', 'win_nosnap_shared'), | 69 ('v8_win_nosnap_shared_compile_rel', 'win_nosnap_shared'), |
| 70 ('v8_win_nosnap_shared_rel', 'win_nosnap_shared'), | 70 ('v8_win_nosnap_shared_rel', 'win_nosnap_shared'), |
| 71 ('v8_win64_rel', 'win64'), | 71 ('v8_win64_rel', 'win64'), |
| 72 ('v8_win64_compile_rel', 'win64'), | 72 ('v8_win64_compile_rel', 'win64'), |
| 73 ('v8_win64_ninja_rel', 'win64_ninja'), | 73 ('v8_win64_ninja_rel', 'win64_ninja'), |
| 74 ('v8_win64_dbg', 'win64'), | 74 ('v8_win64_dbg', 'win64'), |
| 75 ('v8_mac_rel', 'mac'), | 75 ('v8_mac_rel', 'mac'), |
| 76 ('v8_mac_dbg', 'mac'), | 76 ('v8_mac_dbg', 'mac'), |
| 77 ('v8_mac64_rel', 'mac64'), | 77 ('v8_mac64_rel', 'mac64'), |
| 78 ('v8_mac64_dbg', 'mac64'), | 78 ('v8_mac64_dbg', 'mac64'), |
| 79 ('v8_mac64_asan_rel', 'mac64_asan'), |
| 79 ('v8_linux_arm_rel', 'arm'), | 80 ('v8_linux_arm_rel', 'arm'), |
| 80 ('v8_linux_arm_dbg', 'arm'), | 81 ('v8_linux_arm_dbg', 'arm'), |
| 81 ('v8_linux_arm64_rel', 'arm64'), | 82 ('v8_linux_arm64_rel', 'arm64'), |
| 82 ('v8_linux_arm64_dbg', 'arm64'), | 83 ('v8_linux_arm64_dbg', 'arm64'), |
| 83 ('v8_linux_mipsel_compile_rel', 'mipsel'), | 84 ('v8_linux_mipsel_compile_rel', 'mipsel'), |
| 84 ('v8_linux_mips64el_compile_rel', 'mips64el'), | 85 ('v8_linux_mips64el_compile_rel', 'mips64el'), |
| 85 ('v8_android_arm_compile_rel', 'android_arm'), | 86 ('v8_android_arm_compile_rel', 'android_arm'), |
| 86 ] | 87 ] |
| 87 ] | 88 ] |
| 88 | 89 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 c['logHorizon'] = 2000 | 214 c['logHorizon'] = 2000 |
| 214 # Must be at least 2x the number of slaves. | 215 # Must be at least 2x the number of slaves. |
| 215 c['eventHorizon'] = 60 | 216 c['eventHorizon'] = 60 |
| 216 # Must be at least 2x the number of on-going builds. | 217 # Must be at least 2x the number of on-going builds. |
| 217 c['buildCacheSize'] = 60 | 218 c['buildCacheSize'] = 60 |
| 218 | 219 |
| 219 ####### PROJECT IDENTITY | 220 ####### PROJECT IDENTITY |
| 220 | 221 |
| 221 c['projectName'] = ActiveMaster.project_name | 222 c['projectName'] = ActiveMaster.project_name |
| 222 c['projectURL'] = config.Master.project_url | 223 c['projectURL'] = config.Master.project_url |
| OLD | NEW |