| 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('mac_retina', 'mac', 'mac') | 115 _AddBisectBot('mac_retina', 'mac', 'mac') |
| 116 _AddBisectBot('mac_hdd', 'mac', 'mac') | 116 _AddBisectBot('mac_hdd', 'mac', 'mac') |
| 117 | 117 |
| 118 _AddBisectBot('linux', 'linux', 'linux') | 118 _AddBisectBot('linux', 'linux', 'linux') |
| 119 | 119 |
| 120 _AddBisectBot('android_fyi', 'android', 'fyi') | 120 _AddBisectBot('android_fyi', 'android', 'fyi') |
| 121 _AddBisectBot('win_fyi', 'win', 'fyi') | 121 _AddBisectBot('win_fyi', 'win', 'fyi') |
| 122 _AddBisectBot('mac_fyi', 'mac', 'fyi') | 122 _AddBisectBot('mac_fyi', 'mac', 'fyi') |
| 123 _AddBisectBot('linux_fyi', 'linux', 'fyi') | 123 _AddBisectBot('linux_fyi', 'linux', 'fyi') |
| 124 | 124 |
| 125 _AddBisectBot('android_webview_aosp', 'android', 'webview') | 125 _AddBisectBot('android_webview_arm64_aosp', 'android', 'webview') |
| 126 | 126 |
| 127 # Skips '_perf_bisect' suffix since skip_suffix=True | 127 # Skips '_perf_bisect' suffix since skip_suffix=True |
| 128 _AddBisectBot('android_s5_perf_cq', 'android', 'cq', skip_suffix=True) | 128 _AddBisectBot('android_s5_perf_cq', 'android', 'cq', skip_suffix=True) |
| 129 _AddBisectBot('winx64_10_perf_cq', 'win', 'cq', skip_suffix=True) | 129 _AddBisectBot('winx64_10_perf_cq', 'win', 'cq', skip_suffix=True) |
| 130 _AddBisectBot('mac_retina_perf_cq', 'mac', 'cq', skip_suffix=True) | 130 _AddBisectBot('mac_retina_perf_cq', 'mac', 'cq', skip_suffix=True) |
| 131 _AddBisectBot('linux_perf_cq', 'linux', 'cq', skip_suffix=True) | 131 _AddBisectBot('linux_perf_cq', 'linux', 'cq', skip_suffix=True) |
| 132 | 132 |
| 133 slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumPerfTryServer') | 133 slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumPerfTryServer') |
| 134 | 134 |
| 135 for builder in c['builders']: | 135 for builder in c['builders']: |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 # Must be at least 2x the number of slaves. | 213 # Must be at least 2x the number of slaves. |
| 214 c['eventHorizon'] = 200 | 214 c['eventHorizon'] = 200 |
| 215 c['logCompressionLimit'] = False | 215 c['logCompressionLimit'] = False |
| 216 | 216 |
| 217 # Adjust the buildCaches to be 3x the number of slaves per builder. | 217 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 218 c['autoBuildCacheRatio'] = 3 | 218 c['autoBuildCacheRatio'] = 3 |
| 219 | 219 |
| 220 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 220 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 221 | 221 |
| 222 # vi: set ts=4 sts=2 sw=2 et: | 222 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |