OLD | NEW |
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 Loading... |
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) |
OLD | NEW |