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

Side by Side Diff: masters/master.chromium.lkgr/lkgr_finder.py

Issue 11418274: Add Win Aura and Linux Aura to lkgr. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/build/
Patch Set: add browser_tests and interactive_ui_tests on linux aura Created 8 years 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Fetch the latest results for a pre-selected set of builders we care about. 6 """Fetch the latest results for a pre-selected set of builders we care about.
7 If we find a 'good' revision -- based on criteria explained below -- we 7 If we find a 'good' revision -- based on criteria explained below -- we
8 mark the revision as LKGR, and POST it to the LKGR server: 8 mark the revision as LKGR, and POST it to the LKGR server:
9 9
10 http://chromium-status.appspot.com/lkgr 10 http://chromium-status.appspot.com/lkgr
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 ], 119 ],
120 'Win7 Tests (dbg)(6)': [ 120 'Win7 Tests (dbg)(6)': [
121 'browser_tests', 121 'browser_tests',
122 ], 122 ],
123 'Chrome Frame Tests (ie8)': [ 123 'Chrome Frame Tests (ie8)': [
124 'chrome_frame_unittests', 124 'chrome_frame_unittests',
125 ], 125 ],
126 # 'Interactive Tests (dbg)': [ 126 # 'Interactive Tests (dbg)': [
127 # 'interactive_ui_tests', 127 # 'interactive_ui_tests',
128 # ], 128 # ],
129 'Win Aura': [
130 'ash_unittests',
131 'aura_unittests',
132 'browser_tests',
133 'compile',
134 'compositor_unittests',
135 'content_browsertests',
136 'content_unittests',
137 'interactive_ui_tests',
138 'unit_tests',
139 'views_unittests',
140 ],
129 }, # chromium.win 141 }, # chromium.win
130 'chromium.mac': { 142 'chromium.mac': {
131 'Mac Builder (dbg)': [ 143 'Mac Builder (dbg)': [
132 'compile', 144 'compile',
133 ], 145 ],
134 'Mac 10.6 Tests (dbg)(1)': [ 146 'Mac 10.6 Tests (dbg)(1)': [
135 'browser_tests', 147 'browser_tests',
136 'cc_unittests', 148 'cc_unittests',
137 'googleurl_unittests', 149 'googleurl_unittests',
138 'ppapi_unittests', 150 'ppapi_unittests',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'nacl_integration', 196 'nacl_integration',
185 'ppapi_unittests', 197 'ppapi_unittests',
186 'printing_unittests', 198 'printing_unittests',
187 'remoting_unittests', 199 'remoting_unittests',
188 'sql_unittests', 200 'sql_unittests',
189 'sync_unit_tests', 201 'sync_unit_tests',
190 'ui_unittests', 202 'ui_unittests',
191 'unit_tests', 203 'unit_tests',
192 'webkit_compositor_bindings_unittests', 204 'webkit_compositor_bindings_unittests',
193 ], 205 ],
206 'Linux Aura': [
207 'aura_unittests',
208 'base_unittests',
209 'browser_tests',
210 'cacheinvalidation_unittests',
211 'compile',
212 'compositor_unittests',
213 'content_browsertests',
214 'content_unittests',
215 'crypto_unittests',
216 'device_unittests',
217 'googleurl_unittests',
218 'gpu_unittests',
219 'ipc_tests',
220 'interactive_ui_tests',
221 'jingle_unittests',
222 'media_unittests',
223 'net_unittests',
224 'ppapi_unittests',
225 'printing_unittests',
226 'remoting_unittests',
227 'sync_unit_tests',
228 'ui_unittests',
229 'unit_tests',
230 'views_unittests',
231 ],
194 'Android Builder (dbg)': [ 232 'Android Builder (dbg)': [
195 'build', 233 'build',
196 ], 234 ],
197 'Android Tests (dbg)': [ 235 'Android Tests (dbg)': [
198 'build', 236 'build',
199 ], 237 ],
200 'Android Clang Builder (dbg)': [ 238 'Android Clang Builder (dbg)': [
201 'build', 239 'build',
202 ], 240 ],
203 }, # chromium.linux 241 }, # chromium.linux
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 for master in options.notify: 528 for master in options.notify:
491 NotifyMaster(master, candidate, options.dry) 529 NotifyMaster(master, candidate, options.dry)
492 else: 530 else:
493 VerbosePrint('No newer LKGR found than current %s' % lkgr) 531 VerbosePrint('No newer LKGR found than current %s' % lkgr)
494 VerbosePrint('-' * 80) 532 VerbosePrint('-' * 80)
495 533
496 return 0 534 return 0
497 535
498 if __name__ == '__main__': 536 if __name__ == '__main__':
499 sys.exit(main()) 537 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698