| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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-gpu-fyi-archive', | 9 'build_gs_bucket': 'chromium-gpu-fyi-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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 ], | 745 ], |
| 746 'bot_type': 'tester', | 746 'bot_type': 'tester', |
| 747 'parent_buildername': 'GPU Mac Builder (dbg)', | 747 'parent_buildername': 'GPU Mac Builder (dbg)', |
| 748 'testing': { | 748 'testing': { |
| 749 'platform': 'mac', | 749 'platform': 'mac', |
| 750 }, | 750 }, |
| 751 'enable_swarming': True, | 751 'enable_swarming': True, |
| 752 }, | 752 }, |
| 753 'Android Debug (Nexus 5X)': { | 753 'Android Debug (Nexus 5X)': { |
| 754 'chromium_config': 'android', | 754 'chromium_config': 'android', |
| 755 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 755 'chromium_apply_config': ['chrome_with_codecs'], |
| 756 'gclient_config': 'chromium', | 756 'gclient_config': 'chromium', |
| 757 'gclient_apply_config': ['android'], | 757 'gclient_apply_config': ['android'], |
| 758 'chromium_config_kwargs': { | 758 'chromium_config_kwargs': { |
| 759 'BUILD_CONFIG': 'Debug', | |
| 760 'TARGET_BITS': 32, | |
| 761 'TARGET_PLATFORM': 'android', | 759 'TARGET_PLATFORM': 'android', |
| 762 }, | 760 }, |
| 763 'android_config': 'main_builder', | 761 'android_config': 'arm64_builder_mb', |
| 764 'bot_type': 'builder_tester', | 762 'bot_type': 'builder_tester', |
| 765 'compile_targets': [ | 763 'compile_targets': [ |
| 766 ], | 764 ], |
| 767 'test_generators': [ | 765 'test_generators': [ |
| 768 steps.generate_gtest, | 766 steps.generate_gtest, |
| 769 steps.generate_isolated_script, | 767 steps.generate_isolated_script, |
| 770 steps.generate_script, | 768 steps.generate_script, |
| 771 ], | 769 ], |
| 772 'testing': { | 770 'testing': { |
| 773 'platform': 'linux', | 771 'platform': 'linux', |
| 774 }, | 772 }, |
| 775 'use_isolate': False, | 773 'use_isolate': False, |
| 776 'enable_swarming': False, | 774 'enable_swarming': False, |
| 777 }, | 775 }, |
| 778 'Android Debug (Nexus 9)': { | 776 'Android Debug (Nexus 9)': { |
| 779 'chromium_config': 'android', | 777 'chromium_config': 'android', |
| 780 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 778 'chromium_apply_config': ['chrome_with_codecs'], |
| 781 'gclient_config': 'chromium', | 779 'gclient_config': 'chromium', |
| 782 'gclient_apply_config': ['android'], | 780 'gclient_apply_config': ['android'], |
| 783 'chromium_config_kwargs': { | 781 'chromium_config_kwargs': { |
| 784 'BUILD_CONFIG': 'Debug', | |
| 785 'TARGET_BITS': 32, | |
| 786 'TARGET_PLATFORM': 'android', | 782 'TARGET_PLATFORM': 'android', |
| 787 }, | 783 }, |
| 788 'android_config': 'main_builder', | 784 'android_config': 'arm64_builder_mb', |
| 789 'bot_type': 'builder_tester', | 785 'bot_type': 'builder_tester', |
| 790 'compile_targets': [ | 786 'compile_targets': [ |
| 791 ], | 787 ], |
| 792 'test_generators': [ | 788 'test_generators': [ |
| 793 steps.generate_gtest, | 789 steps.generate_gtest, |
| 794 steps.generate_isolated_script, | 790 steps.generate_isolated_script, |
| 795 steps.generate_script, | 791 steps.generate_script, |
| 796 ], | 792 ], |
| 797 'testing': { | 793 'testing': { |
| 798 'platform': 'linux', | 794 'platform': 'linux', |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 'aura_builder', | 980 'aura_builder', |
| 985 ], | 981 ], |
| 986 'testing': { | 982 'testing': { |
| 987 'platform': 'linux', | 983 'platform': 'linux', |
| 988 }, | 984 }, |
| 989 'enable_swarming': False, | 985 'enable_swarming': False, |
| 990 'use_isolate': True, | 986 'use_isolate': True, |
| 991 }, | 987 }, |
| 992 }, | 988 }, |
| 993 } | 989 } |
| OLD | NEW |