| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import socket | 10 import socket |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 _AddBisectBot('android_s5', 'android', 'android') | 115 _AddBisectBot('android_s5', 'android', 'android') |
| 116 | 116 |
| 117 _AddBisectBot('win', 'win', 'windows') | 117 _AddBisectBot('win', 'win', 'windows') |
| 118 _AddBisectBot('win_8', 'win', 'windows') | 118 _AddBisectBot('win_8', 'win', 'windows') |
| 119 _AddBisectBot('win_x64', 'win', 'windows') | 119 _AddBisectBot('win_x64', 'win', 'windows') |
| 120 _AddBisectBot('winx64_10', 'win', 'windows') | 120 _AddBisectBot('winx64_10', 'win', 'windows') |
| 121 _AddBisectBot('winx64ati', 'win', 'windows') | 121 _AddBisectBot('winx64ati', 'win', 'windows') |
| 122 _AddBisectBot('winx64intel', 'win', 'windows') | 122 _AddBisectBot('winx64intel', 'win', 'windows') |
| 123 _AddBisectBot('winx64nvidia', 'win', 'windows') | 123 _AddBisectBot('winx64nvidia', 'win', 'windows') |
| 124 _AddBisectBot('winx64_zen', 'win', 'windows') | 124 _AddBisectBot('winx64_zen', 'win', 'windows') |
| 125 _AddBisectBot('winx64_high_dpi', 'win', 'windows') |
| 125 | 126 |
| 126 _AddBisectBot('mac_10_10', 'mac', 'mac') | 127 _AddBisectBot('mac_10_10', 'mac', 'mac') |
| 127 _AddBisectBot('mac_10_11', 'mac', 'mac') | 128 _AddBisectBot('mac_10_11', 'mac', 'mac') |
| 128 _AddBisectBot('mac_retina', 'mac', 'mac') | 129 _AddBisectBot('mac_retina', 'mac', 'mac') |
| 129 _AddBisectBot('mac_hdd', 'mac', 'mac') | 130 _AddBisectBot('mac_hdd', 'mac', 'mac') |
| 130 | 131 |
| 131 _AddBisectBot('linux', 'linux', 'linux') | 132 _AddBisectBot('linux', 'linux', 'linux') |
| 132 | 133 |
| 133 _AddBisectBot('android_fyi', 'android', 'fyi') | 134 _AddBisectBot('android_fyi', 'android', 'fyi') |
| 134 _AddBisectBot('win_fyi', 'win', 'fyi') | 135 _AddBisectBot('win_fyi', 'win', 'fyi') |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 # Must be at least 2x the number of slaves. | 220 # Must be at least 2x the number of slaves. |
| 220 c['eventHorizon'] = 200 | 221 c['eventHorizon'] = 200 |
| 221 c['logCompressionLimit'] = False | 222 c['logCompressionLimit'] = False |
| 222 | 223 |
| 223 # Adjust the buildCaches to be 3x the number of slaves per builder. | 224 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 224 c['autoBuildCacheRatio'] = 3 | 225 c['autoBuildCacheRatio'] = 3 |
| 225 | 226 |
| 226 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 227 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 227 | 228 |
| 228 # vi: set ts=4 sts=2 sw=2 et: | 229 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |