Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: PRESUBMIT.py

Issue 5961009: Convert build.chromium.org URLs to new URL format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update to tools/bisect-builds.py move Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/extensions/buildbot/popup.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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']
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/extensions/buildbot/popup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698