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

Side by Side Diff: masters/master.client.webrtc/master_mac_cfg.py

Issue 53283002: Update WebRTC iOS bots for ninja (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 1 month 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 | masters/master.tryserver.webrtc/master.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 webrtc_factory 6 from master.factory import webrtc_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 10
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'perf_id': 'webrtc-mac-large-tests', 120 'perf_id': 'webrtc-mac-large-tests',
121 'perf_measuring_tests': ['vie_auto_test', 121 'perf_measuring_tests': ['vie_auto_test',
122 'video_engine_tests'], 122 'video_engine_tests'],
123 'custom_cmd_line_tests': ['vie_auto_test', 123 'custom_cmd_line_tests': ['vie_auto_test',
124 'voe_auto_test'], 124 'voe_auto_test'],
125 })) 125 }))
126 126
127 # iOS. 127 # iOS.
128 B('iOS Debug', 'ios_debug_factory', scheduler=scheduler, auto_reboot=False) 128 B('iOS Debug', 'ios_debug_factory', scheduler=scheduler, auto_reboot=False)
129 F('ios_debug_factory', mac().WebRTCFactory( 129 F('ios_debug_factory', mac().WebRTCFactory(
130 target='Debug', 130 target='Debug-iphoneos',
131 options=options, 131 options=options,
132 factory_properties=mac_ios_factory_properties)) 132 factory_properties=mac_ios_factory_properties))
133 133
134 B('iOS Release', 'ios_release_factory', scheduler=scheduler, auto_reboot=False) 134 B('iOS Release', 'ios_release_factory', scheduler=scheduler, auto_reboot=False)
135 F('ios_release_factory', mac().WebRTCFactory( 135 F('ios_release_factory', mac().WebRTCFactory(
136 target='Release', 136 target='Release-iphoneos',
137 options=options, 137 options=options,
138 factory_properties=mac_ios_factory_properties)) 138 factory_properties=mac_ios_factory_properties))
139 139
140 140
141 def Update(c): 141 def Update(c):
142 helper.Update(c) 142 helper.Update(c)
OLDNEW
« no previous file with comments | « no previous file | masters/master.tryserver.webrtc/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698