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

Side by Side Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 2344173002: Archiving of AppRTC APK in client.webrtc waterfall (Closed)
Patch Set: Addressed comments. Created 4 years, 3 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 # Contains the bulk of the WebRTC builder configurations so they can be reused 5 # Contains the bulk of the WebRTC builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from recipe_engine.types import freeze 8 from recipe_engine.types import freeze
9 9
10 RECIPE_CONFIGS = freeze({ 10 RECIPE_CONFIGS = freeze({
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 'TARGET_PLATFORM': 'android', 394 'TARGET_PLATFORM': 'android',
395 'TARGET_ARCH': 'arm', 395 'TARGET_ARCH': 'arm',
396 'TARGET_BITS': 32, 396 'TARGET_BITS': 32,
397 }, 397 },
398 'bot_type': 'builder', 398 'bot_type': 'builder',
399 'testing': {'platform': 'linux'}, 399 'testing': {'platform': 'linux'},
400 'triggers': [ 400 'triggers': [
401 'Android32 Tests (L Nexus5)', 401 'Android32 Tests (L Nexus5)',
402 'Android32 Tests (L Nexus7.2)', 402 'Android32 Tests (L Nexus7.2)',
403 ], 403 ],
404 'archive_apprtc': True,
404 }, 405 },
405 'Android32 Builder (dbg)': { 406 'Android32 Builder (dbg)': {
406 'recipe_config': 'webrtc_android', 407 'recipe_config': 'webrtc_android',
407 'chromium_config_kwargs': { 408 'chromium_config_kwargs': {
408 'BUILD_CONFIG': 'Debug', 409 'BUILD_CONFIG': 'Debug',
409 'TARGET_PLATFORM': 'android', 410 'TARGET_PLATFORM': 'android',
410 'TARGET_ARCH': 'arm', 411 'TARGET_ARCH': 'arm',
411 'TARGET_BITS': 32, 412 'TARGET_BITS': 32,
412 }, 413 },
413 'bot_type': 'builder', 414 'bot_type': 'builder',
414 'testing': {'platform': 'linux'}, 415 'testing': {'platform': 'linux'},
415 'triggers': [ 416 'triggers': [
416 'Android32 Tests (L Nexus5)(dbg)', 417 'Android32 Tests (L Nexus5)(dbg)',
417 'Android32 Tests (L Nexus7.2)(dbg)', 418 'Android32 Tests (L Nexus7.2)(dbg)',
418 ], 419 ],
420 'archive_apprtc': True,
419 }, 421 },
420 'Android32 Builder x86': { 422 'Android32 Builder x86': {
421 'recipe_config': 'webrtc_android', 423 'recipe_config': 'webrtc_android',
422 'chromium_config_kwargs': { 424 'chromium_config_kwargs': {
423 'BUILD_CONFIG': 'Release', 425 'BUILD_CONFIG': 'Release',
424 'TARGET_PLATFORM': 'android', 426 'TARGET_PLATFORM': 'android',
425 'TARGET_ARCH': 'intel', 427 'TARGET_ARCH': 'intel',
426 'TARGET_BITS': 32, 428 'TARGET_BITS': 32,
427 }, 429 },
428 'bot_type': 'builder', 430 'bot_type': 'builder',
(...skipping 27 matching lines...) Expand all
456 'BUILD_CONFIG': 'Release', 458 'BUILD_CONFIG': 'Release',
457 'TARGET_PLATFORM': 'android', 459 'TARGET_PLATFORM': 'android',
458 'TARGET_ARCH': 'arm', 460 'TARGET_ARCH': 'arm',
459 'TARGET_BITS': 64, 461 'TARGET_BITS': 64,
460 }, 462 },
461 'bot_type': 'builder', 463 'bot_type': 'builder',
462 'testing': {'platform': 'linux'}, 464 'testing': {'platform': 'linux'},
463 'triggers': [ 465 'triggers': [
464 'Android64 Tests (L Nexus9)', 466 'Android64 Tests (L Nexus9)',
465 ], 467 ],
468 'archive_apprtc': True,
466 }, 469 },
467 'Android64 Builder (dbg)': { 470 'Android64 Builder (dbg)': {
468 'recipe_config': 'webrtc_android', 471 'recipe_config': 'webrtc_android',
469 'chromium_config_kwargs': { 472 'chromium_config_kwargs': {
470 'BUILD_CONFIG': 'Debug', 473 'BUILD_CONFIG': 'Debug',
471 'TARGET_PLATFORM': 'android', 474 'TARGET_PLATFORM': 'android',
472 'TARGET_ARCH': 'arm', 475 'TARGET_ARCH': 'arm',
473 'TARGET_BITS': 64, 476 'TARGET_BITS': 64,
474 }, 477 },
475 'bot_type': 'builder', 478 'bot_type': 'builder',
476 'testing': {'platform': 'linux'}, 479 'testing': {'platform': 'linux'},
480 'archive_apprtc': True,
477 }, 481 },
478 'Android64 Builder x64 (dbg)': { 482 'Android64 Builder x64 (dbg)': {
479 'recipe_config': 'webrtc_android', 483 'recipe_config': 'webrtc_android',
480 'chromium_config_kwargs': { 484 'chromium_config_kwargs': {
481 'BUILD_CONFIG': 'Debug', 485 'BUILD_CONFIG': 'Debug',
482 'TARGET_PLATFORM': 'android', 486 'TARGET_PLATFORM': 'android',
483 'TARGET_ARCH': 'intel', 487 'TARGET_ARCH': 'intel',
484 'TARGET_BITS': 64, 488 'TARGET_BITS': 64,
485 }, 489 },
486 'bot_type': 'builder', 490 'bot_type': 'builder',
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 'TARGET_ARCH': 'arm', 1306 'TARGET_ARCH': 'arm',
1303 'TARGET_BITS': 32, 1307 'TARGET_BITS': 32,
1304 }, 1308 },
1305 'bot_type': 'builder', 1309 'bot_type': 'builder',
1306 'testing': {'platform': 'linux'}, 1310 'testing': {'platform': 'linux'},
1307 }, 1311 },
1308 }, 1312 },
1309 }, 1313 },
1310 }) 1314 })
1311 1315
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698