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

Side by Side Diff: Tools/GardeningServer/scripts/config.js

Issue 336033002: Cleanup some garden-o-matic cruft and dead code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 10 matching lines...) Expand all
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE. 23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 var config = config || {}; 26 var config = config || {};
27 27
28 (function() { 28 (function() {
29 29
30 config = { 30 config = {
31 kBuildNumberLimit: 20,
ojan 2014/06/14 18:42:11 This was only used in a warning, but it was wrong
32 kRelativeTimeUpdateFrequency: 1000 * 60, 31 kRelativeTimeUpdateFrequency: 1000 * 60,
33 kTreeStatusUpdateFrequency: 1000 * 30, 32 kTreeStatusUpdateFrequency: 1000 * 30,
34 kUpdateFrequency: 10 * 60 * 1000, 33 kUpdateFrequency: 10 * 60 * 1000,
35 34
36 kBlinkSvnURL: 'svn://svn.chromium.org/blink/trunk',
37 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink', 35 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink',
38 kSvnLogURL: 'http://build.chromium.org/cgi-bin/svn-log',
ojan 2014/06/14 18:42:11 These two are unused.
39 kRietveldURL: 'https://codereview.chromium.org', 36 kRietveldURL: 'https://codereview.chromium.org',
40 37
41 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', 38 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit',
42 39
43 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives', 40 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives',
44 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', 41 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall',
45 builders: { 42 builders: {
46 'WebKit XP': {version: 'xp'}, 43 'WebKit XP': {version: 'xp'},
47 'WebKit Win7': {version: 'win7'}, 44 'WebKit Win7': {version: 'win7'},
48 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, 45 'WebKit Win7 (dbg)': {version: 'win7', debug: true},
(...skipping 15 matching lines...) Expand all
64 return base.underscoredBuilderName(builderName); 61 return base.underscoredBuilderName(builderName);
65 }, 62 },
66 builderApplies: function(builderName) { 63 builderApplies: function(builderName) {
67 return builderName.indexOf('GPU') == -1 && 64 return builderName.indexOf('GPU') == -1 &&
68 builderName.indexOf('Oilpan') == -1; 65 builderName.indexOf('Oilpan') == -1;
69 }, 66 },
70 useLocalResults: !!base.getURLParameter('useLocalResults') || false, 67 useLocalResults: !!base.getURLParameter('useLocalResults') || false,
71 }; 68 };
72 69
73 })(); 70 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698