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 kTreeStatusUpdateFrequency: 1000 * 30, | 31 kUpdateFrequency: 1000 * 30, |
32 kUpdateFrequency: 10 * 60 * 1000, | |
33 | |
34 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink', | 32 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink', |
35 kRietveldURL: 'https://codereview.chromium.org', | |
36 | |
37 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', | 33 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', |
38 | |
39 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a
rchives', | 34 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a
rchives', |
40 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', | 35 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', |
41 builders: { | 36 builders: { |
42 'WebKit XP': {version: 'xp'}, | 37 'WebKit XP': {version: 'xp'}, |
43 'WebKit Win7': {version: 'win7'}, | 38 'WebKit Win7': {version: 'win7'}, |
44 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, | 39 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, |
45 'WebKit Linux': {version: 'lucid', is64bit: true}, | 40 'WebKit Linux': {version: 'lucid', is64bit: true}, |
46 // FIXME: Temporarily disabled, because it makes garden-o-matic unusably slow. | 41 // FIXME: Temporarily disabled, because it makes garden-o-matic unusably slow. |
47 // 'WebKit Linux ASAN': {version: 'lucid', is64bit: true}, | 42 // 'WebKit Linux ASAN': {version: 'lucid', is64bit: true}, |
48 'WebKit Linux 32': {version: 'lucid'}, | 43 'WebKit Linux 32': {version: 'lucid'}, |
49 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}, | 44 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}, |
50 'WebKit Linux Leak': {version: 'leak', is64bit: true}, | 45 'WebKit Linux Leak': {version: 'leak', is64bit: true}, |
51 'WebKit Mac10.6': {version: 'snowleopard'}, | 46 'WebKit Mac10.6': {version: 'snowleopard'}, |
52 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, | 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, |
53 'WebKit Mac10.7': {version: 'lion'}, | 48 'WebKit Mac10.7': {version: 'lion'}, |
54 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, | 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, |
55 'WebKit Mac10.8': {version: 'mountainlion'}, | 50 'WebKit Mac10.8': {version: 'mountainlion'}, |
56 'WebKit Mac10.8 (retina)': {version: 'retina'}, | 51 'WebKit Mac10.8 (retina)': {version: 'retina'}, |
57 'WebKit Mac10.9': {version: 'mavericks'}, | 52 'WebKit Mac10.9': {version: 'mavericks'}, |
58 'WebKit Android (Nexus4)': {version: 'android'}, | 53 'WebKit Android (Nexus4)': {version: 'android'}, |
59 }, | 54 }, |
60 resultsDirectoryNameFromBuilderName: function(builderName) { | 55 resultsDirectoryNameFromBuilderName: function(builderName) { |
61 return base.underscoredBuilderName(builderName); | 56 return base.underscoredBuilderName(builderName); |
62 }, | 57 }, |
63 builderApplies: function(builderName) { | 58 builderApplies: function(builderName) { |
64 return builderName.indexOf('GPU') == -1 && | 59 return builderName.indexOf('GPU') == -1 && |
65 builderName.indexOf('Oilpan') == -1; | 60 builderName.indexOf('Oilpan') == -1; |
66 }, | 61 }, |
67 useLocalResults: !!base.getURLParameter('useLocalResults') || false, | |
68 }; | 62 }; |
69 | 63 |
70 })(); | 64 })(); |
OLD | NEW |