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

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

Issue 2395143002: WebRTC: Move Android bots with devices to the perf waterfall. (Closed)
Patch Set: Created 4 years, 2 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'chromium_config_kwargs': { 387 'chromium_config_kwargs': {
388 'BUILD_CONFIG': 'Release', 388 'BUILD_CONFIG': 'Release',
389 'TARGET_BITS': 64, 389 'TARGET_BITS': 64,
390 }, 390 },
391 'webrtc_config_kwargs': { 391 'webrtc_config_kwargs': {
392 'PERF_ID': 'webrtc-linux-large-tests', 392 'PERF_ID': 'webrtc-linux-large-tests',
393 }, 393 },
394 'bot_type': 'builder_tester', 394 'bot_type': 'builder_tester',
395 'testing': {'platform': 'linux'}, 395 'testing': {'platform': 'linux'},
396 }, 396 },
397 'Android32 Builder': {
398 'recipe_config': 'webrtc_android_swarming',
399 'chromium_config_kwargs': {
400 'BUILD_CONFIG': 'Release',
401 'TARGET_PLATFORM': 'android',
402 'TARGET_ARCH': 'arm',
403 'TARGET_BITS': 32,
404 },
405 'bot_type': 'builder',
406 'testing': {'platform': 'linux'},
407 'triggers': [
408 'Android32 Tests (L Nexus5)',
409 'Android32 Tests (L Nexus7.2)',
410 'Android32 Tests (M Nexus5X)',
411 ],
412 'archive_apprtc': True,
413 'use_isolate': True,
414 },
415 'Android32 Builder (dbg)': {
416 'recipe_config': 'webrtc_android_swarming',
417 'chromium_config_kwargs': {
418 'BUILD_CONFIG': 'Debug',
419 'TARGET_PLATFORM': 'android',
420 'TARGET_ARCH': 'arm',
421 'TARGET_BITS': 32,
422 },
423 'bot_type': 'builder',
424 'testing': {'platform': 'linux'},
425 'triggers': [
426 'Android32 Tests (L Nexus5)(dbg)',
427 'Android32 Tests (L Nexus7.2)(dbg)',
428 'Android32 Tests (M Nexus5X)(dbg)',
429 ],
430 'archive_apprtc': True,
431 'use_isolate': True,
432 },
433 'Android32 Builder x86': { 397 'Android32 Builder x86': {
434 'recipe_config': 'webrtc_android', 398 'recipe_config': 'webrtc_android',
435 'chromium_config_kwargs': { 399 'chromium_config_kwargs': {
436 'BUILD_CONFIG': 'Release', 400 'BUILD_CONFIG': 'Release',
437 'TARGET_PLATFORM': 'android', 401 'TARGET_PLATFORM': 'android',
438 'TARGET_ARCH': 'intel', 402 'TARGET_ARCH': 'intel',
439 'TARGET_BITS': 32, 403 'TARGET_BITS': 32,
440 }, 404 },
441 'bot_type': 'builder', 405 'bot_type': 'builder',
442 'testing': {'platform': 'linux'}, 406 'testing': {'platform': 'linux'},
(...skipping 13 matching lines...) Expand all
456 'recipe_config': 'webrtc_android_clang', 420 'recipe_config': 'webrtc_android_clang',
457 'chromium_config_kwargs': { 421 'chromium_config_kwargs': {
458 'BUILD_CONFIG': 'Debug', 422 'BUILD_CONFIG': 'Debug',
459 'TARGET_PLATFORM': 'android', 423 'TARGET_PLATFORM': 'android',
460 'TARGET_ARCH': 'mipsel', 424 'TARGET_ARCH': 'mipsel',
461 'TARGET_BITS': 32, 425 'TARGET_BITS': 32,
462 }, 426 },
463 'bot_type': 'builder', 427 'bot_type': 'builder',
464 'testing': {'platform': 'linux'}, 428 'testing': {'platform': 'linux'},
465 }, 429 },
466 'Android64 Builder': {
467 'recipe_config': 'webrtc_android_swarming',
468 'chromium_config_kwargs': {
469 'BUILD_CONFIG': 'Release',
470 'TARGET_PLATFORM': 'android',
471 'TARGET_ARCH': 'arm',
472 'TARGET_BITS': 64,
473 },
474 'bot_type': 'builder',
475 'testing': {'platform': 'linux'},
476 'triggers': [
477 'Android64 Tests (M Nexus5X)',
478 'Android64 Tests (L Nexus9)',
479 ],
480 'archive_apprtc': True,
481 'use_isolate': True,
482 },
483 'Android64 Builder (dbg)': {
484 'recipe_config': 'webrtc_android_swarming',
485 'chromium_config_kwargs': {
486 'BUILD_CONFIG': 'Debug',
487 'TARGET_PLATFORM': 'android',
488 'TARGET_ARCH': 'arm',
489 'TARGET_BITS': 64,
490 },
491 'bot_type': 'builder',
492 'testing': {'platform': 'linux'},
493 'triggers': [
494 'Android64 Tests (M Nexus5X)(dbg)',
495 ],
496 'archive_apprtc': True,
497 'use_isolate': True,
498 },
499 'Android64 Builder x64 (dbg)': { 430 'Android64 Builder x64 (dbg)': {
500 'recipe_config': 'webrtc_android', 431 'recipe_config': 'webrtc_android',
501 'chromium_config_kwargs': { 432 'chromium_config_kwargs': {
502 'BUILD_CONFIG': 'Debug', 433 'BUILD_CONFIG': 'Debug',
503 'TARGET_PLATFORM': 'android', 434 'TARGET_PLATFORM': 'android',
504 'TARGET_ARCH': 'intel', 435 'TARGET_ARCH': 'intel',
505 'TARGET_BITS': 64, 436 'TARGET_BITS': 64,
506 }, 437 },
507 'bot_type': 'builder', 438 'bot_type': 'builder',
508 'testing': {'platform': 'linux'}, 439 'testing': {'platform': 'linux'},
(...skipping 24 matching lines...) Expand all
533 'recipe_config': 'webrtc_android', 464 'recipe_config': 'webrtc_android',
534 'chromium_config_kwargs': { 465 'chromium_config_kwargs': {
535 'BUILD_CONFIG': 'Release', 466 'BUILD_CONFIG': 'Release',
536 'TARGET_PLATFORM': 'android', 467 'TARGET_PLATFORM': 'android',
537 'TARGET_ARCH': 'arm', 468 'TARGET_ARCH': 'arm',
538 'TARGET_BITS': 32, 469 'TARGET_BITS': 32,
539 }, 470 },
540 'bot_type': 'builder', 471 'bot_type': 'builder',
541 'testing': {'platform': 'linux'}, 472 'testing': {'platform': 'linux'},
542 }, 473 },
543 'Android32 Tests (L Nexus5)(dbg)': {
544 'recipe_config': 'webrtc_android',
545 'chromium_config_kwargs': {
546 'BUILD_CONFIG': 'Debug',
547 'TARGET_PLATFORM': 'android',
548 'TARGET_ARCH': 'arm',
549 'TARGET_BITS': 32,
550 },
551 'bot_type': 'tester',
552 'parent_buildername': 'Android32 Builder (dbg)',
553 'testing': {'platform': 'linux'},
554 },
555 'Android32 Tests (L Nexus5)': {
556 'recipe_config': 'webrtc_android',
557 'chromium_config_kwargs': {
558 'BUILD_CONFIG': 'Release',
559 'TARGET_PLATFORM': 'android',
560 'TARGET_ARCH': 'arm',
561 'TARGET_BITS': 32,
562 },
563 'webrtc_config_kwargs': {
564 'PERF_ID': 'webrtc-android-tests-nexus5',
565 },
566 'bot_type': 'tester',
567 'parent_buildername': 'Android32 Builder',
568 'testing': {'platform': 'linux'},
569 },
570 'Android32 Tests (L Nexus7.2)(dbg)': {
571 'recipe_config': 'webrtc_android',
572 'chromium_config_kwargs': {
573 'BUILD_CONFIG': 'Debug',
574 'TARGET_PLATFORM': 'android',
575 'TARGET_ARCH': 'arm',
576 'TARGET_BITS': 32,
577 },
578 'bot_type': 'tester',
579 'parent_buildername': 'Android32 Builder (dbg)',
580 'testing': {'platform': 'linux'},
581 },
582 'Android32 Tests (L Nexus7.2)': {
583 'recipe_config': 'webrtc_android',
584 'chromium_config_kwargs': {
585 'BUILD_CONFIG': 'Release',
586 'TARGET_PLATFORM': 'android',
587 'TARGET_ARCH': 'arm',
588 'TARGET_BITS': 32,
589 },
590 'webrtc_config_kwargs': {
591 'PERF_ID': 'webrtc-android-tests-nexus72',
592 },
593 'bot_type': 'tester',
594 'parent_buildername': 'Android32 Builder Release',
595 'testing': {'platform': 'linux'},
596 },
597 'Android32 Tests (M Nexus5X)(dbg)': { 474 'Android32 Tests (M Nexus5X)(dbg)': {
598 'recipe_config': 'webrtc_android_swarming', 475 'recipe_config': 'webrtc_android_swarming',
599 'chromium_config_kwargs': { 476 'chromium_config_kwargs': {
600 'BUILD_CONFIG': 'Debug', 477 'BUILD_CONFIG': 'Debug',
601 'TARGET_PLATFORM': 'android', 478 'TARGET_PLATFORM': 'android',
602 'TARGET_ARCH': 'arm', 479 'TARGET_ARCH': 'arm',
603 'TARGET_BITS': 32, 480 'TARGET_BITS': 32,
604 }, 481 },
605 'bot_type': 'tester', 482 'bot_type': 'builder_tester',
606 'parent_buildername': 'Android32 Builder (dbg)',
607 'testing': {'platform': 'linux'}, 483 'testing': {'platform': 'linux'},
484 'archive_apprtc': True,
608 'enable_swarming': True, 485 'enable_swarming': True,
609 'use_isolate': True, 486 'use_isolate': True,
610 'swarming_dimensions': { 487 'swarming_dimensions': {
611 'device_os': 'M', 488 'device_os': 'M',
612 'device_type': 'bullhead', # Nexus 5X 489 'device_type': 'bullhead', # Nexus 5X
613 'os': 'Android', 490 'os': 'Android',
614 } 491 }
615 }, 492 },
616 'Android32 Tests (M Nexus5X)': { 493 'Android32 Tests (M Nexus5X)': {
617 'recipe_config': 'webrtc_android_swarming', 494 'recipe_config': 'webrtc_android_swarming',
618 'chromium_config_kwargs': { 495 'chromium_config_kwargs': {
619 'BUILD_CONFIG': 'Release', 496 'BUILD_CONFIG': 'Release',
620 'TARGET_PLATFORM': 'android', 497 'TARGET_PLATFORM': 'android',
621 'TARGET_ARCH': 'arm', 498 'TARGET_ARCH': 'arm',
622 'TARGET_BITS': 32, 499 'TARGET_BITS': 32,
623 }, 500 },
624 'bot_type': 'tester', 501 'bot_type': 'builder_tester',
625 'parent_buildername': 'Android32 Builder',
626 'testing': {'platform': 'linux'}, 502 'testing': {'platform': 'linux'},
503 'archive_apprtc': True,
627 'enable_swarming': True, 504 'enable_swarming': True,
628 'use_isolate': True, 505 'use_isolate': True,
629 'swarming_dimensions': { 506 'swarming_dimensions': {
630 'device_os': 'M', 507 'device_os': 'M',
631 'device_type': 'bullhead', # Nexus 5X 508 'device_type': 'bullhead', # Nexus 5X
632 'os': 'Android', 509 'os': 'Android',
633 } 510 }
634 }, 511 },
635 'Android64 Tests (L Nexus9)': {
636 'recipe_config': 'webrtc_android',
637 'chromium_config_kwargs': {
638 'BUILD_CONFIG': 'Release',
639 'TARGET_PLATFORM': 'android',
640 'TARGET_ARCH': 'arm',
641 'TARGET_BITS': 64,
642 },
643 'webrtc_config_kwargs': {
644 'PERF_ID': 'webrtc-android-tests-nexus9',
645 },
646 'bot_type': 'tester',
647 'parent_buildername': 'Android64 Builder',
648 'testing': {'platform': 'linux'},
649 },
650 'Android64 Tests (M Nexus5X)(dbg)': { 512 'Android64 Tests (M Nexus5X)(dbg)': {
651 'recipe_config': 'webrtc_android_swarming', 513 'recipe_config': 'webrtc_android_swarming',
652 'chromium_config_kwargs': { 514 'chromium_config_kwargs': {
653 'BUILD_CONFIG': 'Debug', 515 'BUILD_CONFIG': 'Debug',
654 'TARGET_PLATFORM': 'android', 516 'TARGET_PLATFORM': 'android',
655 'TARGET_ARCH': 'arm', 517 'TARGET_ARCH': 'arm',
656 'TARGET_BITS': 64, 518 'TARGET_BITS': 64,
657 }, 519 },
658 'bot_type': 'tester', 520 'bot_type': 'builder_tester',
659 'parent_buildername': 'Android64 Builder (dbg)',
660 'testing': {'platform': 'linux'}, 521 'testing': {'platform': 'linux'},
522 'archive_apprtc': True,
661 'enable_swarming': True, 523 'enable_swarming': True,
662 'use_isolate': True, 524 'use_isolate': True,
663 'swarming_dimensions': { 525 'swarming_dimensions': {
664 'device_type': 'bullhead', # Nexus 5X 526 'device_type': 'bullhead', # Nexus 5X
665 'device_os': 'M', 527 'device_os': 'M',
666 'os': 'Android', 528 'os': 'Android',
667 } 529 }
668 }, 530 },
669 'Android64 Tests (M Nexus5X)': { 531 'Android64 Tests (M Nexus5X)': {
670 'recipe_config': 'webrtc_android_swarming', 532 'recipe_config': 'webrtc_android_swarming',
671 'chromium_config_kwargs': { 533 'chromium_config_kwargs': {
672 'BUILD_CONFIG': 'Release', 534 'BUILD_CONFIG': 'Release',
673 'TARGET_PLATFORM': 'android', 535 'TARGET_PLATFORM': 'android',
674 'TARGET_ARCH': 'arm', 536 'TARGET_ARCH': 'arm',
675 'TARGET_BITS': 64, 537 'TARGET_BITS': 64,
676 }, 538 },
677 'bot_type': 'tester', 539 'bot_type': 'builder_tester',
678 'parent_buildername': 'Android64 Builder',
679 'testing': {'platform': 'linux'}, 540 'testing': {'platform': 'linux'},
541 'archive_apprtc': True,
680 'enable_swarming': True, 542 'enable_swarming': True,
681 'use_isolate': True, 543 'use_isolate': True,
682 'swarming_dimensions': { 544 'swarming_dimensions': {
683 'device_type': 'bullhead', # Nexus 5X 545 'device_type': 'bullhead', # Nexus 5X
684 'device_os': 'M', 546 'device_os': 'M',
685 'os': 'Android', 547 'os': 'Android',
686 } 548 }
687 }, 549 },
688 }, 550 },
689 }, 551 },
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 }, 680 },
819 'webrtc_config_kwargs': { 681 'webrtc_config_kwargs': {
820 'PERF_ID': 'webrtc-android-tests-nexus6-lollipop', 682 'PERF_ID': 'webrtc-android-tests-nexus6-lollipop',
821 }, 683 },
822 'bot_type': 'tester', 684 'bot_type': 'tester',
823 'parent_buildername': 'Android32 Builder', 685 'parent_buildername': 'Android32 Builder',
824 'testing': {'platform': 'linux'}, 686 'testing': {'platform': 'linux'},
825 }, 687 },
826 }, 688 },
827 }, 689 },
690 'client.webrtc.perf': {
691 'settings': {
692 'build_gs_bucket': 'chromium-webrtc',
693 },
694 'builders': {
695 'Android32 Builder': {
696 'recipe_config': 'webrtc_android',
697 'chromium_config_kwargs': {
698 'BUILD_CONFIG': 'Release',
699 'TARGET_PLATFORM': 'android',
700 'TARGET_ARCH': 'arm',
701 'TARGET_BITS': 32,
702 },
703 'bot_type': 'builder',
704 'testing': {'platform': 'linux'},
705 'triggers': [
706 'Android32 Tests (L Nexus5)',
707 'Android32 Tests (L Nexus7.2)',
708 ],
709 },
710 'Android32 Builder (dbg)': {
kjellander_chromium 2016/10/07 07:07:15 Let's skip Debug entirely for the perf waterfall a
711 'recipe_config': 'webrtc_android',
712 'chromium_config_kwargs': {
713 'BUILD_CONFIG': 'Debug',
714 'TARGET_PLATFORM': 'android',
715 'TARGET_ARCH': 'arm',
716 'TARGET_BITS': 32,
717 },
718 'bot_type': 'builder',
719 'testing': {'platform': 'linux'},
720 'triggers': [
721 'Android32 Tests (L Nexus5)(dbg)',
722 'Android32 Tests (L Nexus7.2)(dbg)',
723 ],
724 },
725 'Android64 Builder': {
726 'recipe_config': 'webrtc_android',
727 'chromium_config_kwargs': {
728 'BUILD_CONFIG': 'Release',
729 'TARGET_PLATFORM': 'android',
730 'TARGET_ARCH': 'arm',
731 'TARGET_BITS': 64,
732 },
733 'bot_type': 'builder',
734 'testing': {'platform': 'linux'},
735 'triggers': [
736 'Android64 Tests (L Nexus9)',
737 ],
738 },
739 'Android32 Tests (L Nexus5)(dbg)': {
kjellander_chromium 2016/10/07 07:07:15 (remove)
740 'recipe_config': 'webrtc_android',
741 'chromium_config_kwargs': {
742 'BUILD_CONFIG': 'Debug',
743 'TARGET_PLATFORM': 'android',
744 'TARGET_ARCH': 'arm',
745 'TARGET_BITS': 32,
746 },
747 'bot_type': 'tester',
748 'parent_buildername': 'Android32 Builder (dbg)',
749 'testing': {'platform': 'linux'},
750 },
751 'Android32 Tests (L Nexus5)': {
752 'recipe_config': 'webrtc_android',
753 'chromium_config_kwargs': {
754 'BUILD_CONFIG': 'Release',
755 'TARGET_PLATFORM': 'android',
756 'TARGET_ARCH': 'arm',
757 'TARGET_BITS': 32,
758 },
759 'webrtc_config_kwargs': {
760 'PERF_ID': 'webrtc-android-tests-nexus5',
761 },
762 'bot_type': 'tester',
763 'parent_buildername': 'Android32 Builder',
764 'testing': {'platform': 'linux'},
765 },
766 'Android32 Tests (L Nexus7.2)(dbg)': {
kjellander_chromium 2016/10/07 07:07:15 (remove)
767 'recipe_config': 'webrtc_android',
768 'chromium_config_kwargs': {
769 'BUILD_CONFIG': 'Debug',
770 'TARGET_PLATFORM': 'android',
771 'TARGET_ARCH': 'arm',
772 'TARGET_BITS': 32,
773 },
774 'bot_type': 'tester',
775 'parent_buildername': 'Android32 Builder (dbg)',
776 'testing': {'platform': 'linux'},
777 },
778 'Android32 Tests (L Nexus7.2)': {
779 'recipe_config': 'webrtc_android',
780 'chromium_config_kwargs': {
781 'BUILD_CONFIG': 'Release',
782 'TARGET_PLATFORM': 'android',
783 'TARGET_ARCH': 'arm',
784 'TARGET_BITS': 32,
785 },
786 'webrtc_config_kwargs': {
787 'PERF_ID': 'webrtc-android-tests-nexus72',
788 },
789 'bot_type': 'tester',
790 'parent_buildername': 'Android32 Builder Release',
791 'testing': {'platform': 'linux'},
792 },
793 'Android64 Tests (L Nexus9)': {
794 'recipe_config': 'webrtc_android',
795 'chromium_config_kwargs': {
796 'BUILD_CONFIG': 'Release',
797 'TARGET_PLATFORM': 'android',
798 'TARGET_ARCH': 'arm',
799 'TARGET_BITS': 64,
800 },
801 'webrtc_config_kwargs': {
802 'PERF_ID': 'webrtc-android-tests-nexus9',
803 },
804 'bot_type': 'tester',
805 'parent_buildername': 'Android64 Builder',
806 'testing': {'platform': 'linux'},
807 },
808 },
809 },
828 'tryserver.webrtc': { 810 'tryserver.webrtc': {
829 'settings': { 811 'settings': {
830 'build_gs_bucket': 'chromium-webrtc', 812 'build_gs_bucket': 'chromium-webrtc',
831 }, 813 },
832 'builders': { 814 'builders': {
833 'win_compile_dbg': { 815 'win_compile_dbg': {
834 'recipe_config': 'webrtc', 816 'recipe_config': 'webrtc',
835 'chromium_config_kwargs': { 817 'chromium_config_kwargs': {
836 'BUILD_CONFIG': 'Debug', 818 'BUILD_CONFIG': 'Debug',
837 'TARGET_BITS': 32, 819 'TARGET_BITS': 32,
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1400 'bot_type': 'builder_tester', 1382 'bot_type': 'builder_tester',
1401 'testing': {'platform': 'linux'}, 1383 'testing': {'platform': 'linux'},
1402 'use_isolate': True, 1384 'use_isolate': True,
1403 'enable_swarming': True, 1385 'enable_swarming': True,
1404 'swarming_dimensions': { 1386 'swarming_dimensions': {
1405 'device_type': 'bullhead', # Nexus 5X 1387 'device_type': 'bullhead', # Nexus 5X
1406 'device_os': 'M', 1388 'device_os': 'M',
1407 'os': 'Android', 1389 'os': 'Android',
1408 } 1390 }
1409 }, 1391 },
1410 'android_n6': {
1411 'recipe_config': 'webrtc_android',
1412 'chromium_config_kwargs': {
1413 'BUILD_CONFIG': 'Debug',
1414 'TARGET_PLATFORM': 'android',
1415 'TARGET_ARCH': 'arm',
1416 'TARGET_BITS': 32,
1417 },
1418 'bot_type': 'builder_tester',
1419 'testing': {'platform': 'linux'},
1420 },
1421 'android_gyp_dbg': { 1392 'android_gyp_dbg': {
1422 'recipe_config': 'webrtc_android', 1393 'recipe_config': 'webrtc_android',
1423 'chromium_config_kwargs': { 1394 'chromium_config_kwargs': {
1424 'BUILD_CONFIG': 'Debug', 1395 'BUILD_CONFIG': 'Debug',
1425 'TARGET_PLATFORM': 'android', 1396 'TARGET_PLATFORM': 'android',
1426 'TARGET_ARCH': 'arm', 1397 'TARGET_ARCH': 'arm',
1427 'TARGET_BITS': 32, 1398 'TARGET_BITS': 32,
1428 }, 1399 },
1429 'bot_type': 'builder', 1400 'bot_type': 'builder',
1430 'testing': {'platform': 'linux'}, 1401 'testing': {'platform': 'linux'},
1431 }, 1402 },
1432 'android_gyp_rel': { 1403 'android_gyp_rel': {
1433 'recipe_config': 'webrtc_android', 1404 'recipe_config': 'webrtc_android',
1434 'chromium_config_kwargs': { 1405 'chromium_config_kwargs': {
1435 'BUILD_CONFIG': 'Release', 1406 'BUILD_CONFIG': 'Release',
1436 'TARGET_PLATFORM': 'android', 1407 'TARGET_PLATFORM': 'android',
1437 'TARGET_ARCH': 'arm', 1408 'TARGET_ARCH': 'arm',
1438 'TARGET_BITS': 32, 1409 'TARGET_BITS': 32,
1439 }, 1410 },
1440 'bot_type': 'builder', 1411 'bot_type': 'builder',
1441 'testing': {'platform': 'linux'}, 1412 'testing': {'platform': 'linux'},
1442 }, 1413 },
1443 }, 1414 },
1444 }, 1415 },
1445 }) 1416 })
1446 1417
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698