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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/api.py

Issue 829363004: Move CrWinClang and Tester to recipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: . Created 5 years, 11 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import copy 5 import copy
6 6
7 from slave import recipe_api 7 from slave import recipe_api
8 8
9 9
10 # Different types of builds this recipe module can do. 10 # Different types of builds this recipe module can do.
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'gclient_apply_config': [ 106 'gclient_apply_config': [
107 'v8_bleeding_edge_git', 107 'v8_bleeding_edge_git',
108 'chromium_lkcr', 108 'chromium_lkcr',
109 'show_v8_revision', 109 'show_v8_revision',
110 ], 110 ],
111 }, 111 },
112 'chromium_skia': { 112 'chromium_skia': {
113 'chromium_config': 'chromium', 113 'chromium_config': 'chromium',
114 'gclient_config': 'chromium_skia', 114 'gclient_config': 'chromium_skia',
115 }, 115 },
116 'chromium_win_clang': {
117 'chromium_config': 'chromium_win_clang',
118 'gclient_config': 'chromium',
119 },
120
116 'official': { 121 'official': {
117 'chromium_config': 'chromium_official', 122 'chromium_config': 'chromium_official',
118 'gclient_config': 'chromium', 123 'gclient_config': 'chromium',
119 'gclient_apply_config': ['chrome_internal'], 124 'gclient_apply_config': ['chrome_internal'],
120 }, 125 },
121 'perf': { 126 'perf': {
122 'chromium_config': 'chromium_official', 127 'chromium_config': 'chromium_official',
123 'gclient_config': 'perf', 128 'gclient_config': 'perf',
124 } 129 }
125 } 130 }
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 if mastername.startswith('chromium.perf'): 609 if mastername.startswith('chromium.perf'):
605 return self.m.archive.legacy_upload_url( 610 return self.m.archive.legacy_upload_url(
606 master_config.get('build_gs_bucket'), 611 master_config.get('build_gs_bucket'),
607 extra_url_components=None) 612 extra_url_components=None)
608 elif mastername == 'tryserver.chromium.perf': 613 elif mastername == 'tryserver.chromium.perf':
609 return None 614 return None
610 else: 615 else:
611 return self.m.archive.legacy_upload_url( 616 return self.m.archive.legacy_upload_url(
612 master_config.get('build_gs_bucket'), 617 master_config.get('build_gs_bucket'),
613 extra_url_components=self.m.properties['mastername']) 618 extra_url_components=self.m.properties['mastername'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698