OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 """Top-level presubmit script for Chromium. | 5 """Top-level presubmit script for Chromium. |
6 | 6 |
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
8 for more details about the presubmit API built into gcl. | 8 for more details about the presubmit API built into gcl. |
9 """ | 9 """ |
10 | 10 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 IGNORED_BUILDERS = [ | 161 IGNORED_BUILDERS = [ |
162 'Chromium XP', | 162 'Chromium XP', |
163 'Chromium Mac', | 163 'Chromium Mac', |
164 'Chromium Arm (dbg)', | 164 'Chromium Arm (dbg)', |
165 'Chromium Linux', | 165 'Chromium Linux', |
166 'Chromium Linux x64', | 166 'Chromium Linux x64', |
167 ] | 167 ] |
168 results.extend(input_api.canned_checks.CheckBuildbotPendingBuilds( | 168 results.extend(input_api.canned_checks.CheckBuildbotPendingBuilds( |
169 input_api, | 169 input_api, |
170 output_api, | 170 output_api, |
171 'http://build.chromium.org/buildbot/waterfall/json/builders?filter=1', | 171 'http://build.chromium.org/p/chromium/json/builders?filter=1', |
172 6, | 172 6, |
173 IGNORED_BUILDERS)) | 173 IGNORED_BUILDERS)) |
174 return results | 174 return results |
175 | 175 |
176 | 176 |
177 def GetPreferredTrySlaves(): | 177 def GetPreferredTrySlaves(): |
178 return ['win', 'linux', 'mac'] | 178 return ['win', 'linux', 'mac'] |
OLD | NEW |