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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_android.py

Issue 2491033005: Recipe changes for chormium.android.fyi master (Closed)
Patch Set: Retrain Created 4 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 . import steps 5 from . import steps
6 6
7 7
8 SPEC = { 8 SPEC = {
9 'settings': { 9 'settings': {
10 'build_gs_bucket': 'chromium-android-archive', 10 'build_gs_bucket': 'chromium-android-archive',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'TARGET_BITS': 32, 108 'TARGET_BITS': 32,
109 'TARGET_PLATFORM': 'android', 109 'TARGET_PLATFORM': 'android',
110 }, 110 },
111 'android_config': 'x86_builder_mb', 111 'android_config': 'x86_builder_mb',
112 'bot_type': 'builder', 112 'bot_type': 'builder',
113 'testing': { 113 'testing': {
114 'platform': 'linux', 114 'platform': 'linux',
115 }, 115 },
116 }, 116 },
117 117
118 'Jelly Bean Tester': {
119 'chromium_config': 'android',
120 'gclient_config': 'chromium',
121 'gclient_apply_config': ['android'],
122 'chromium_config_kwargs': {
123 'BUILD_CONFIG': 'Debug',
124 'TARGET_PLATFORM': 'android',
125 },
126 'parent_buildername': 'Android arm Builder (dbg)',
127 'bot_type': 'tester',
128 'android_config': 'main_builder_mb',
129 'test_results_config': 'public_server',
130 'testing': {
131 'platform': 'linux',
132 },
133 },
134
135 'KitKat Tablet Tester': { 118 'KitKat Tablet Tester': {
136 'chromium_config': 'android', 119 'chromium_config': 'android',
137 'gclient_config': 'chromium', 120 'gclient_config': 'chromium',
138 'gclient_apply_config': ['android'], 121 'gclient_apply_config': ['android'],
139 'chromium_config_kwargs': { 122 'chromium_config_kwargs': {
140 'BUILD_CONFIG': 'Debug', 123 'BUILD_CONFIG': 'Debug',
141 'TARGET_PLATFORM': 'android', 124 'TARGET_PLATFORM': 'android',
142 }, 125 },
143 'parent_buildername': 'Android arm Builder (dbg)', 126 'parent_buildername': 'Android arm Builder (dbg)',
144 'bot_type': 'tester', 127 'bot_type': 'tester',
(...skipping 15 matching lines...) Expand all
160 }, 143 },
161 'parent_buildername': 'Android arm64 Builder (dbg)', 144 'parent_buildername': 'Android arm64 Builder (dbg)',
162 'bot_type': 'tester', 145 'bot_type': 'tester',
163 'android_config': 'arm64_builder_mb', 146 'android_config': 'arm64_builder_mb',
164 'test_results_config': 'public_server', 147 'test_results_config': 'public_server',
165 'testing': { 148 'testing': {
166 'platform': 'linux', 149 'platform': 'linux',
167 }, 150 },
168 }, 151 },
169 152
170 'Lollipop Consumer Tester': {
171 'chromium_config': 'android',
172 'gclient_config': 'chromium',
173 'gclient_apply_config': ['android'],
174 'chromium_config_kwargs': {
175 'BUILD_CONFIG': 'Debug',
176 'TARGET_PLATFORM': 'android',
177 },
178 'parent_buildername': 'Android arm64 Builder (dbg)',
179 'bot_type': 'tester',
180 'android_config': 'arm64_builder_mb',
181 'test_results_config': 'public_server',
182 'testing': {
183 'platform': 'linux',
184 },
185 },
186
187 'Lollipop Low-end Tester': {
188 'chromium_config': 'android',
189 'gclient_config': 'chromium',
190 'gclient_apply_config': ['android'],
191 'chromium_config_kwargs': {
192 'BUILD_CONFIG': 'Debug',
193 'TARGET_PLATFORM': 'android',
194 },
195 'parent_buildername': 'Android arm Builder (dbg)',
196 'bot_type': 'tester',
197 'android_config': 'main_builder_mb',
198 'test_results_config': 'public_server',
199 'testing': {
200 'platform': 'linux',
201 },
202 },
203
204 'Lollipop Phone Tester': { 153 'Lollipop Phone Tester': {
205 'use_isolate': True, 154 'use_isolate': True,
206 'enable_swarming': True, 155 'enable_swarming': True,
207 'chromium_config': 'android', 156 'chromium_config': 'android',
208 'gclient_config': 'chromium', 157 'gclient_config': 'chromium',
209 'gclient_apply_config': ['android'], 158 'gclient_apply_config': ['android'],
210 'chromium_config_kwargs': { 159 'chromium_config_kwargs': {
211 'BUILD_CONFIG': 'Debug', 160 'BUILD_CONFIG': 'Debug',
212 'TARGET_PLATFORM': 'android', 161 'TARGET_PLATFORM': 'android',
213 }, 162 },
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 'remove_system_webview': True, 300 'remove_system_webview': True,
352 'tests': [ 301 'tests': [
353 steps.WebViewCTSTest(), 302 steps.WebViewCTSTest(),
354 ], 303 ],
355 'testing': { 304 'testing': {
356 'platform': 'linux', 305 'platform': 'linux',
357 }, 306 },
358 }, 307 },
359 }, 308 },
360 } 309 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698