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

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

Issue 362453003: Remove dead code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/scripts/builders.js ('k') | Tools/GardeningServer/scripts/controllers.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 kRelativeTimeUpdateFrequency: 1000 * 60,
32 kTreeStatusUpdateFrequency: 1000 * 30, 31 kTreeStatusUpdateFrequency: 1000 * 30,
33 kUpdateFrequency: 10 * 60 * 1000, 32 kUpdateFrequency: 10 * 60 * 1000,
34 33
35 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink', 34 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink',
36 kRietveldURL: 'https://codereview.chromium.org', 35 kRietveldURL: 'https://codereview.chromium.org',
37 36
38 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', 37 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit',
39 38
40 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives', 39 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives',
41 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', 40 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall',
(...skipping 19 matching lines...) Expand all
61 return base.underscoredBuilderName(builderName); 60 return base.underscoredBuilderName(builderName);
62 }, 61 },
63 builderApplies: function(builderName) { 62 builderApplies: function(builderName) {
64 return builderName.indexOf('GPU') == -1 && 63 return builderName.indexOf('GPU') == -1 &&
65 builderName.indexOf('Oilpan') == -1; 64 builderName.indexOf('Oilpan') == -1;
66 }, 65 },
67 useLocalResults: !!base.getURLParameter('useLocalResults') || false, 66 useLocalResults: !!base.getURLParameter('useLocalResults') || false,
68 }; 67 };
69 68
70 })(); 69 })();
OLDNEW
« no previous file with comments | « Tools/GardeningServer/scripts/builders.js ('k') | Tools/GardeningServer/scripts/controllers.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698