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

Side by Side Diff: masters/master.chromium.webrtc/master_win_cfg.py

Issue 16145002: Add more tests to Chromium WebRTC testers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 6 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 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
11 B = helper.Builder 11 B = helper.Builder
12 F = helper.Factory 12 F = helper.Factory
13 S = helper.Scheduler 13 S = helper.Scheduler
14 T = helper.Triggerable 14 T = helper.Triggerable
15 15
16 16
17 def win(): 17 def win():
18 return chromium_factory.ChromiumFactory('src/build', 'win32') 18 return chromium_factory.ChromiumFactory('src/build', 'win32')
19 def win_tester(): 19 def win_tester():
20 return chromium_factory.ChromiumFactory('src/build', 'win32', 20 return chromium_factory.ChromiumFactory('src/build', 'win32',
21 nohooks_on_update=True) 21 nohooks_on_update=True)
22 22
23 S('win_rel_scheduler', branch='src', treeStableTimer=60) 23 S('win_rel_scheduler', branch='src', treeStableTimer=60)
24 T('win_rel_trigger') 24 T('win_rel_trigger')
25 25
26 chromium_rel_archive = master_config.GetGSUtilUrl('chromium-webrtc', 26 chromium_rel_archive = master_config.GetGSUtilUrl('chromium-webrtc',
27 'Win Builder') 27 'Win Builder')
28 28 tests = [
29 tests = ['pyauto_webrtc_tests'] 29 'pyauto_webrtc_tests',
30 'pyauto_webrtc_apprtc_test',
31 'pyauto_webrtc_quality_tests',
32 'webrtc_manual_browser_tests',
33 'webrtc_manual_content_browsertests',
34 'webrtc_content_unittests',
35 'webrtc_perf_content_unittests',
36 ]
30 37
31 defaults['category'] = 'win' 38 defaults['category'] = 'win'
32 39
33 B('Win Builder', 'win_rel_factory', scheduler='win_rel_scheduler', 40 B('Win Builder', 'win_rel_factory', scheduler='win_rel_scheduler',
34 notify_on_missing=True) 41 notify_on_missing=True)
35 F('win_rel_factory', win().ChromiumFactory( 42 F('win_rel_factory', win().ChromiumFactory(
36 slave_type='Builder', 43 slave_type='Builder',
37 target='Release', 44 target='Release',
38 project='all.sln;chromium_builder_webrtc', 45 project='all.sln;chromium_builder_webrtc',
39 factory_properties={'trigger': 'win_rel_trigger', 46 factory_properties={'trigger': 'win_rel_trigger',
(...skipping 21 matching lines...) Expand all
61 'show_perf_results': True, 68 'show_perf_results': True,
62 'halt_on_missing_build': True, 69 'halt_on_missing_build': True,
63 'perf_id': 'chromium-webrtc-rel-7', 70 'perf_id': 'chromium-webrtc-rel-7',
64 'process_dumps': True, 71 'process_dumps': True,
65 'start_crash_handler': True, 72 'start_crash_handler': True,
66 })) 73 }))
67 74
68 75
69 def Update(config, active_master, c): 76 def Update(config, active_master, c):
70 helper.Update(c) 77 helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webrtc/master_mac_cfg.py ('k') | scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698