Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 })(); |
| OLD | NEW |