| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'WebKit Mac10.6': {version: 'snowleopard'}, | 46 'WebKit Mac10.6': {version: 'snowleopard'}, |
| 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, | 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, |
| 48 'WebKit Mac10.7': {version: 'lion'}, | 48 'WebKit Mac10.7': {version: 'lion'}, |
| 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, | 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, |
| 50 'WebKit Mac10.8': {version: 'mountainlion'}, | 50 'WebKit Mac10.8': {version: 'mountainlion'}, |
| 51 'WebKit Mac10.8 (retina)': {version: 'retina'}, | 51 'WebKit Mac10.8 (retina)': {version: 'retina'}, |
| 52 'WebKit Mac10.9': {version: 'mavericks'}, | 52 'WebKit Mac10.9': {version: 'mavericks'}, |
| 53 'WebKit Android (Nexus4)': {version: 'android'}, | 53 'WebKit Android (Nexus4)': {version: 'android'}, |
| 54 }, | 54 }, |
| 55 resultsDirectoryNameFromBuilderName: function(builderName) { | 55 resultsDirectoryNameFromBuilderName: function(builderName) { |
| 56 return base.underscoredBuilderName(builderName); | 56 return builderName.replace(/[ .()]/g, '_'); |
| 57 }, | 57 }, |
| 58 builderApplies: function(builderName) { | 58 builderApplies: function(builderName) { |
| 59 return builderName.indexOf('GPU') == -1 && | 59 return builderName.indexOf('GPU') == -1 && |
| 60 builderName.indexOf('Oilpan') == -1; | 60 builderName.indexOf('Oilpan') == -1; |
| 61 }, | 61 }, |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 })(); | 64 })(); |
| OLD | NEW |