Chromium Code Reviews| 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 751 'gclient_apply_config': ['android'], | 751 'gclient_apply_config': ['android'], |
| 752 'chromium_config_kwargs': { | 752 'chromium_config_kwargs': { |
| 753 'BUILD_CONFIG': 'Debug', | 753 'BUILD_CONFIG': 'Debug', |
| 754 'TARGET_BITS': 32, | 754 'TARGET_BITS': 32, |
| 755 'TARGET_PLATFORM': 'android', | 755 'TARGET_PLATFORM': 'android', |
| 756 }, | 756 }, |
| 757 'android_config': 'main_builder', | 757 'android_config': 'main_builder', |
| 758 'bot_type': 'builder_tester', | 758 'bot_type': 'builder_tester', |
| 759 'compile_targets': [ | 759 'compile_targets': [ |
| 760 ], | 760 ], |
| 761 'test_generators': [ | |
| 762 steps.generate_gtest, | |
|
jbudorick
2016/04/26 21:38:23
nit: two-space indent
cblume
2016/04/26 22:03:24
Done.
| |
| 763 steps.generate_isolated_script, | |
| 764 steps.generate_script, | |
| 765 ], | |
| 761 'testing': { | 766 'testing': { |
| 762 'platform': 'linux', | 767 'platform': 'linux', |
| 763 }, | 768 }, |
| 764 'use_isolate': False, | 769 'use_isolate': False, |
| 765 'enable_swarming': False, | 770 'enable_swarming': False, |
| 766 }, | 771 }, |
| 767 | 772 |
| 768 'GPU Fake Linux Builder': { | 773 'GPU Fake Linux Builder': { |
| 769 'chromium_config': 'chromium', | 774 'chromium_config': 'chromium', |
| 770 'chromium_apply_config': ['mb', 'ninja_confirm_noop', | 775 'chromium_apply_config': ['mb', 'ninja_confirm_noop', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 948 'aura_builder', | 953 'aura_builder', |
| 949 ], | 954 ], |
| 950 'testing': { | 955 'testing': { |
| 951 'platform': 'linux', | 956 'platform': 'linux', |
| 952 }, | 957 }, |
| 953 'enable_swarming': False, | 958 'enable_swarming': False, |
| 954 'use_isolate': True, | 959 'use_isolate': True, |
| 955 }, | 960 }, |
| 956 }, | 961 }, |
| 957 } | 962 } |
| OLD | NEW |