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

Side by Side Diff: masters/master.chromium.webkit/master_android_latest_cfg.py

Issue 14440005: Rework how bots get the version of Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix typo in devtools master.cfg Created 7 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 5
6 from master import master_config 6 from master import master_config
7 from master.factory import chromium_factory 7 from master.factory import chromium_factory
8 8
9 defaults = {} 9 defaults = {}
10 10
(...skipping 24 matching lines...) Expand all
35 # 35 #
36 T('android_dbg_trigger') 36 T('android_dbg_trigger')
37 37
38 android_dbg_archive = master_config.GetGSUtilUrl( 38 android_dbg_archive = master_config.GetGSUtilUrl(
39 'chromium-android', 'webkit_latest_dbg') 39 'chromium-android', 'webkit_latest_dbg')
40 40
41 # 41 #
42 # Android dbg builder 42 # Android dbg builder
43 # 43 #
44 B('Android Builder (dbg)', 'f_android_dbg', scheduler='s9_android_webkit') 44 B('Android Builder (dbg)', 'f_android_dbg', scheduler='s9_android_webkit')
45 F('f_android_dbg', linux_android().ChromiumWebkitLatestAnnotationFactory( 45 F('f_android_dbg', linux_android().ChromiumAnnotationFactory(
46 target='Debug', 46 target='Debug',
47 annotation_script='src/build/android/buildbot/bb_run_bot.py', 47 annotation_script='src/build/android/buildbot/bb_run_bot.py',
48 factory_properties={ 48 factory_properties={
49 'android_bot_id': 'webkit-latest-builder-dbg', 49 'android_bot_id': 'webkit-latest-builder-dbg',
50 'build_url': android_dbg_archive, 50 'build_url': android_dbg_archive,
51 'trigger': 'android_dbg_trigger', 51 'trigger': 'android_dbg_trigger',
52 'prune_limit': 5, 52 'prune_limit': 5,
53 'blink_config': 'blink',
53 })) 54 }))
54 55
55 B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger', 56 B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger',
56 auto_reboot=False) 57 auto_reboot=False)
57 F('f_android_dbg_tests', linux_android().ChromiumWebkitLatestAnnotationFactory( 58 F('f_android_dbg_tests', linux_android().ChromiumAnnotationFactory(
58 target='Debug', 59 target='Debug',
59 annotation_script='src/build/android/buildbot/bb_run_bot.py', 60 annotation_script='src/build/android/buildbot/bb_run_bot.py',
60 factory_properties={ 61 factory_properties={
61 'android_bot_id': 'webkit-latest-tests-dbg', 62 'android_bot_id': 'webkit-latest-tests-dbg',
62 'build_url': android_dbg_archive, 63 'build_url': android_dbg_archive,
64 'blink_config': 'blink',
63 })) 65 }))
64 66
65 def Update(config, active_master, c): 67 def Update(config, active_master, c):
66 return helper.Update(c) 68 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698