Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Side by Side Diff: Tools/GardeningServer/scripts/config.js

Issue 400423002: Remove base.* methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Tools/GardeningServer/scripts/base_unittests.js ('k') | Tools/GardeningServer/scripts/net.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 })();
OLDNEW
« no previous file with comments | « Tools/GardeningServer/scripts/base_unittests.js ('k') | Tools/GardeningServer/scripts/net.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698