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

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

Issue 1775063002: [Android] Use mb on chromium.linux and tryserver.chromium.android. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: rebase Created 4 years, 9 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
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 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-linux-archive', 9 'build_gs_bucket': 'chromium-linux-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 steps.AndroidJunitTest('junit_unittests'), 173 steps.AndroidJunitTest('junit_unittests'),
174 steps.AndroidJunitTest('net_junit_tests'), 174 steps.AndroidJunitTest('net_junit_tests'),
175 steps.AndroidJunitTest('ui_junit_tests'), 175 steps.AndroidJunitTest('ui_junit_tests'),
176 ], 176 ],
177 'testing': { 177 'testing': {
178 'platform': 'linux', 178 'platform': 'linux',
179 }, 179 },
180 }, 180 },
181 'Android Arm64 Builder (dbg)': { 181 'Android Arm64 Builder (dbg)': {
182 'chromium_config': 'android', 182 'chromium_config': 'android',
183 'chromium_apply_config': ['chrome_with_codecs'], 183 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
184 'gclient_config': 'chromium', 184 'gclient_config': 'chromium',
185 'gclient_apply_config': ['android'], 185 'gclient_apply_config': ['android'],
186 'chromium_config_kwargs': { 186 'chromium_config_kwargs': {
187 'BUILD_CONFIG': 'Debug', 187 'BUILD_CONFIG': 'Debug',
188 'TARGET_BITS': 64, 188 'TARGET_BITS': 64,
189 'TARGET_PLATFORM': 'android', 189 'TARGET_PLATFORM': 'android',
190 }, 190 },
191 'android_config': 'arm64_builder', 191 'android_config': 'arm64_builder',
192 'compile_targets': [ 192 'compile_targets': [
193 'android_builder_tests' 193 'android_builder_tests'
194 ], 194 ],
195 'testing': { 195 'testing': {
196 'platform': 'linux', 196 'platform': 'linux',
197 }, 197 },
198 }, 198 },
199 'Android Builder (dbg)': { 199 'Android Builder (dbg)': {
200 'chromium_config': 'android', 200 'chromium_config': 'android',
201 'chromium_apply_config': ['chrome_with_codecs'], 201 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
202 'gclient_config': 'chromium', 202 'gclient_config': 'chromium',
203 'gclient_apply_config': ['android'], 203 'gclient_apply_config': ['android'],
204 'chromium_config_kwargs': { 204 'chromium_config_kwargs': {
205 'BUILD_CONFIG': 'Debug', 205 'BUILD_CONFIG': 'Debug',
206 'TARGET_BITS': 32, 206 'TARGET_BITS': 32,
207 'TARGET_PLATFORM': 'android', 207 'TARGET_PLATFORM': 'android',
208 }, 208 },
209 'android_config': 'main_builder', 209 'android_config': 'main_builder',
210 'bot_type': 'builder', 210 'bot_type': 'builder',
211 'compile_targets': [ 211 'compile_targets': [
(...skipping 21 matching lines...) Expand all
233 steps.generate_gtest, 233 steps.generate_gtest,
234 steps.generate_script, 234 steps.generate_script,
235 steps.generate_isolated_script, 235 steps.generate_isolated_script,
236 ], 236 ],
237 'testing': { 237 'testing': {
238 'platform': 'linux', 238 'platform': 'linux',
239 }, 239 },
240 }, 240 },
241 'Android Tests (dbg)': { 241 'Android Tests (dbg)': {
242 'chromium_config': 'android', 242 'chromium_config': 'android',
243 'chromium_apply_config': ['chrome_with_codecs'], 243 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
244 'gclient_config': 'chromium', 244 'gclient_config': 'chromium',
245 'gclient_apply_config': ['android'], 245 'gclient_apply_config': ['android'],
246 'chromium_config_kwargs': { 246 'chromium_config_kwargs': {
247 'BUILD_CONFIG': 'Debug', 247 'BUILD_CONFIG': 'Debug',
248 'TARGET_BITS': 32, 248 'TARGET_BITS': 32,
249 'TARGET_PLATFORM': 'android', 249 'TARGET_PLATFORM': 'android',
250 }, 250 },
251 'bot_type': 'tester', 251 'bot_type': 'tester',
252 'parent_buildername': 'Android Builder (dbg)', 252 'parent_buildername': 'Android Builder (dbg)',
253 'android_config': 'main_builder', 253 'android_config': 'main_builder',
(...skipping 14 matching lines...) Expand all
268 steps.generate_script, 268 steps.generate_script,
269 ], 269 ],
270 'testing': { 270 'testing': {
271 'platform': 'linux', 271 'platform': 'linux',
272 }, 272 },
273 'enable_swarming': True, 273 'enable_swarming': True,
274 }, 274 },
275 275
276 'Android Builder': { 276 'Android Builder': {
277 'chromium_config': 'android', 277 'chromium_config': 'android',
278 'chromium_apply_config': ['chrome_with_codecs'], 278 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
279 'gclient_config': 'chromium', 279 'gclient_config': 'chromium',
280 'gclient_apply_config': ['android'], 280 'gclient_apply_config': ['android'],
281 'chromium_config_kwargs': { 281 'chromium_config_kwargs': {
282 'BUILD_CONFIG': 'Release', 282 'BUILD_CONFIG': 'Release',
283 'TARGET_BITS': 32, 283 'TARGET_BITS': 32,
284 'TARGET_PLATFORM': 'android', 284 'TARGET_PLATFORM': 'android',
285 }, 285 },
286 'android_config': 'main_builder', 286 'android_config': 'main_builder',
287 'bot_type': 'builder', 287 'bot_type': 'builder',
288 'compile_targets': [ 288 'compile_targets': [
289 'system_webview_apk', 289 'system_webview_apk',
290 ], 290 ],
291 'testing': { 291 'testing': {
292 'platform': 'linux', 292 'platform': 'linux',
293 }, 293 },
294 'use_isolate': True, 294 'use_isolate': True,
295 'enable_swarming': True, 295 'enable_swarming': True,
296 }, 296 },
297 'Android Tests': { 297 'Android Tests': {
298 'chromium_config': 'android', 298 'chromium_config': 'android',
299 'chromium_apply_config': ['mb'],
299 'gclient_config': 'chromium', 300 'gclient_config': 'chromium',
300 'gclient_apply_config': ['android'], 301 'gclient_apply_config': ['android'],
301 'chromium_config_kwargs': { 302 'chromium_config_kwargs': {
302 'BUILD_CONFIG': 'Release', 303 'BUILD_CONFIG': 'Release',
303 'TARGET_BITS': 32, 304 'TARGET_BITS': 32,
304 'TARGET_PLATFORM': 'android', 305 'TARGET_PLATFORM': 'android',
305 }, 306 },
306 'bot_type': 'tester', 307 'bot_type': 'tester',
307 'parent_buildername': 'Android Builder', 308 'parent_buildername': 'Android Builder',
308 'android_config': 'main_builder', 309 'android_config': 'main_builder',
(...skipping 14 matching lines...) Expand all
323 steps.generate_script, 324 steps.generate_script,
324 ], 325 ],
325 'testing': { 326 'testing': {
326 'platform': 'linux', 327 'platform': 'linux',
327 }, 328 },
328 'enable_swarming': True, 329 'enable_swarming': True,
329 }, 330 },
330 331
331 'Android Clang Builder (dbg)': { 332 'Android Clang Builder (dbg)': {
332 'chromium_config': 'android_clang', 333 'chromium_config': 'android_clang',
333 'chromium_apply_config': ['chrome_with_codecs', 'errorprone'], 334 'chromium_apply_config': ['chrome_with_codecs', 'errorprone', 'mb'],
334 'gclient_config': 'chromium', 335 'gclient_config': 'chromium',
335 'gclient_apply_config': ['android'], 336 'gclient_apply_config': ['android'],
336 'chromium_config_kwargs': { 337 'chromium_config_kwargs': {
337 'BUILD_CONFIG': 'Debug', 338 'BUILD_CONFIG': 'Debug',
338 'TARGET_BITS': 32, 339 'TARGET_BITS': 32,
339 'TARGET_PLATFORM': 'android', 340 'TARGET_PLATFORM': 'android',
340 }, 341 },
341 'android_config': 'clang_builder', 342 'android_config': 'clang_builder',
342 'bot_type': 'builder_tester', 343 'bot_type': 'builder_tester',
343 'compile_targets': [ 344 'compile_targets': [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 'TARGET_BITS': 32, 383 'TARGET_BITS': 32,
383 'TARGET_PLATFORM': 'android', 384 'TARGET_PLATFORM': 'android',
384 }, 385 },
385 'android_config': 'cast_builder', 386 'android_config': 'cast_builder',
386 'testing': { 387 'testing': {
387 'platform': 'linux', 388 'platform': 'linux',
388 }, 389 },
389 }, 390 },
390 }, 391 },
391 } 392 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698