OLD | NEW |
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-fyi-archive', | 9 'build_gs_bucket': 'chromium-fyi-archive', |
10 }, | 10 }, |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 'test_generators': [ | 578 'test_generators': [ |
579 steps.generate_gtest, | 579 steps.generate_gtest, |
580 ], | 580 ], |
581 'bot_type': 'tester', | 581 'bot_type': 'tester', |
582 'parent_buildername': 'CrWinClangLLD', | 582 'parent_buildername': 'CrWinClangLLD', |
583 'testing': { | 583 'testing': { |
584 'platform': 'win', | 584 'platform': 'win', |
585 }, | 585 }, |
586 'enable_swarming': True, | 586 'enable_swarming': True, |
587 }, | 587 }, |
588 'CrWinClang(asan)': { | 588 'CrWinAsan': { |
589 'recipe_config': 'chromium_win_clang_asan', | 589 'recipe_config': 'chromium_win_clang_asan', |
590 'chromium_config_kwargs': { | 590 'chromium_config_kwargs': { |
591 'BUILD_CONFIG': 'Release', | 591 'BUILD_CONFIG': 'Release', |
592 'TARGET_BITS': 32, | 592 'TARGET_BITS': 32, |
593 }, | 593 }, |
594 'bot_type': 'builder', | 594 'bot_type': 'builder', |
595 'testing': { | 595 'testing': { |
596 'platform': 'win', | 596 'platform': 'win', |
597 }, | 597 }, |
598 'use_isolate': True, | 598 'use_isolate': True, |
599 'enable_swarming': True, | 599 'enable_swarming': True, |
600 # TODO(thakis): Consider using chromium_builder_asan instead? | 600 # TODO(thakis): Consider using chromium_builder_asan instead? |
601 'compile_targets': [ 'chromium_builder_tests' ], | 601 'compile_targets': [ 'chromium_builder_tests' ], |
602 # add_tests_as_compile_targets not needed for the asan bot, it doesn't | 602 # add_tests_as_compile_targets not needed for the asan bot, it doesn't |
603 # build everything. | 603 # build everything. |
604 }, | 604 }, |
605 'CrWinClang(asan) tester': { | 605 'CrWinAsan tester': { |
606 'recipe_config': 'chromium_win_asan', | 606 'recipe_config': 'chromium_win_asan', |
607 'chromium_config_kwargs': { | 607 'chromium_config_kwargs': { |
608 'BUILD_CONFIG': 'Release', | 608 'BUILD_CONFIG': 'Release', |
609 'TARGET_BITS': 32, | 609 'TARGET_BITS': 32, |
610 }, | 610 }, |
611 'test_generators': [ | 611 'test_generators': [ |
612 steps.generate_gtest, | 612 steps.generate_gtest, |
613 ], | 613 ], |
614 'bot_type': 'tester', | 614 'bot_type': 'tester', |
615 'parent_buildername': 'CrWinClang(asan)', | 615 'parent_buildername': 'CrWinAsan', |
616 'testing': { | 616 'testing': { |
617 'platform': 'win', | 617 'platform': 'win', |
618 }, | 618 }, |
619 'enable_swarming': True, | 619 'enable_swarming': True, |
620 }, | 620 }, |
621 'CrWinAsan(dll)': { | 621 'CrWinAsan(dll)': { |
622 'recipe_config': 'chromium_win_clang_asan', | 622 'recipe_config': 'chromium_win_clang_asan', |
623 'chromium_config_kwargs': { | 623 'chromium_config_kwargs': { |
624 'BUILD_CONFIG': 'Release', | 624 'BUILD_CONFIG': 'Release', |
625 'TARGET_BITS': 32, | 625 'TARGET_BITS': 32, |
(...skipping 21 matching lines...) Expand all Loading... |
647 ], | 647 ], |
648 'bot_type': 'tester', | 648 'bot_type': 'tester', |
649 'parent_buildername': 'CrWinAsan(dll)', | 649 'parent_buildername': 'CrWinAsan(dll)', |
650 'testing': { | 650 'testing': { |
651 'platform': 'win', | 651 'platform': 'win', |
652 }, | 652 }, |
653 'enable_swarming': True, | 653 'enable_swarming': True, |
654 }, | 654 }, |
655 }, | 655 }, |
656 } | 656 } |
OLD | NEW |