| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 config.kPlatforms = { | 32 config.kPlatforms = { |
| 33 'chromium' : { | 33 'chromium' : { |
| 34 label : 'Chromium', | 34 label : 'Chromium', |
| 35 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', | 35 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit', |
| 36 layoutTestResultsURL: 'http://build.chromium.org/f/chromium/layout_test_
results', | 36 layoutTestResultsURL: 'http://build.chromium.org/f/chromium/layout_test_
results', |
| 37 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', | 37 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', |
| 38 builders: { | 38 builders: { |
| 39 'WebKit XP': {version: 'xp'}, | 39 'WebKit XP': {version: 'xp'}, |
| 40 'WebKit Win7': {version: 'win7'}, | 40 'WebKit Win7': {version: 'win7'}, |
| 41 'WebKit Win7 (dbg)(1)': {version: 'win7', debug: true}, | 41 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, |
| 42 'WebKit Win7 (dbg)(2)': {version: 'win7', debug: true}, | |
| 43 'WebKit Linux': {version: 'lucid', is64bit: true}, | 42 'WebKit Linux': {version: 'lucid', is64bit: true}, |
| 44 'WebKit Linux 32': {version: 'lucid'}, | 43 'WebKit Linux 32': {version: 'lucid'}, |
| 45 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}
, | 44 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}
, |
| 46 'WebKit Mac10.6': {version: 'snowleopard'}, | 45 'WebKit Mac10.6': {version: 'snowleopard'}, |
| 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, | 46 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, |
| 48 'WebKit Mac10.7': {version: 'lion'}, | 47 'WebKit Mac10.7': {version: 'lion'}, |
| 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, | 48 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, |
| 50 'WebKit Mac10.8': {version: 'mountainlion'}, | 49 'WebKit Mac10.8': {version: 'mountainlion'}, |
| 51 }, | 50 }, |
| 52 resultsDirectoryNameFromBuilderName: function(builderName) { | 51 resultsDirectoryNameFromBuilderName: function(builderName) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 78 return config.kPlatforms[config.currentPlatform].builders; | 77 return config.kPlatforms[config.currentPlatform].builders; |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 config.builderApplies = function(builderName) { | 80 config.builderApplies = function(builderName) { |
| 82 return config.kPlatforms[config.currentPlatform]._builderApplies(builderName
); | 81 return config.kPlatforms[config.currentPlatform]._builderApplies(builderName
); |
| 83 }; | 82 }; |
| 84 | 83 |
| 85 config.useLocalResults = Boolean(base.getURLParameter('useLocalResults')) || fal
se; | 84 config.useLocalResults = Boolean(base.getURLParameter('useLocalResults')) || fal
se; |
| 86 | 85 |
| 87 })(); | 86 })(); |
| OLD | NEW |