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

Side by Side Diff: masters/master.chromium.webrtc.fyi/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 P = helper.Periodic 14 P = helper.Periodic
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 19
20 S('win_webrtc_trunk_scheduler', branch='trunk', treeStableTimer=0) 20 S('win_webrtc_trunk_scheduler', branch='trunk', treeStableTimer=0)
21 S('win_webrtc_stable_scheduler', branch='stable', treeStableTimer=0) 21 S('win_webrtc_stable_scheduler', branch='stable', treeStableTimer=0)
22 P('win_every_4_hours_scheduler', periodicBuildTimer=4*60*60) 22 P('win_every_4_hours_scheduler', periodicBuildTimer=4*60*60)
23 23
24 project = 'all.sln;chromium_builder_webrtc' 24 project = 'all.sln;chromium_builder_webrtc'
25 tests = ['pyauto_webrtc_tests'] 25 tests = [
26 'pyauto_webrtc_tests',
27 'pyauto_webrtc_apprtc_test',
28 'pyauto_webrtc_quality_tests',
29 'webrtc_manual_browser_tests',
30 'webrtc_manual_content_browsertests',
31 'webrtc_content_unittests',
32 'webrtc_perf_content_unittests',
33 ]
26 34
27 defaults['category'] = 'win' 35 defaults['category'] = 'win'
28 36
29 B('Win [latest WebRTC trunk]', 'win_webrtc_trunk_factory', 37 B('Win [latest WebRTC trunk]', 'win_webrtc_trunk_factory',
30 scheduler='win_webrtc_trunk_scheduler|win_every_4_hours_scheduler', 38 scheduler='win_webrtc_trunk_scheduler|win_every_4_hours_scheduler',
31 notify_on_missing=True) 39 notify_on_missing=True)
32 F('win_webrtc_trunk_factory', win().ChromiumWebRTCLatestTrunkFactory( 40 F('win_webrtc_trunk_factory', win().ChromiumWebRTCLatestTrunkFactory(
33 slave_type='BuilderTester', 41 slave_type='BuilderTester',
34 target='Release', 42 target='Release',
35 project=project, 43 project=project,
(...skipping 16 matching lines...) Expand all
52 factory_properties={ 60 factory_properties={
53 'show_perf_results': True, 61 'show_perf_results': True,
54 'perf_id': 'chromium-webrtc-stable-tot-rel-win', 62 'perf_id': 'chromium-webrtc-stable-tot-rel-win',
55 'process_dumps': True, 63 'process_dumps': True,
56 'start_crash_handler': True, 64 'start_crash_handler': True,
57 })) 65 }))
58 66
59 67
60 def Update(config, active_master, c): 68 def Update(config, active_master, c):
61 return helper.Update(c) 69 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webrtc.fyi/master_mac_cfg.py ('k') | masters/master.chromium.webrtc/master_linux_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698