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