| 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-archive', | 9 'build_gs_bucket': 'chromium-gpu-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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 steps.generate_gtest, | 90 steps.generate_gtest, |
| 91 steps.generate_script, | 91 steps.generate_script, |
| 92 steps.generate_isolated_script, | 92 steps.generate_isolated_script, |
| 93 ], | 93 ], |
| 94 'parent_buildername': 'GPU Win Builder (dbg)', | 94 'parent_buildername': 'GPU Win Builder (dbg)', |
| 95 'testing': { | 95 'testing': { |
| 96 'platform': 'win', | 96 'platform': 'win', |
| 97 }, | 97 }, |
| 98 'enable_swarming': True, | 98 'enable_swarming': True, |
| 99 }, | 99 }, |
| 100 'Win7 Release (ATI)': { | |
| 101 'chromium_config': 'chromium', | |
| 102 'chromium_apply_config': ['ninja_confirm_noop'], | |
| 103 'gclient_config': 'chromium', | |
| 104 'chromium_config_kwargs': { | |
| 105 'BUILD_CONFIG': 'Release', | |
| 106 'TARGET_BITS': 32, | |
| 107 }, | |
| 108 'bot_type': 'tester', | |
| 109 'test_generators': [ | |
| 110 steps.generate_gtest, | |
| 111 steps.generate_script, | |
| 112 steps.generate_isolated_script, | |
| 113 ], | |
| 114 'parent_buildername': 'GPU Win Builder', | |
| 115 'testing': { | |
| 116 'platform': 'win', | |
| 117 }, | |
| 118 'enable_swarming': True, | |
| 119 }, | |
| 120 'GPU Linux Builder': { | 100 'GPU Linux Builder': { |
| 121 'chromium_config': 'chromium', | 101 'chromium_config': 'chromium', |
| 122 'chromium_apply_config': [ | 102 'chromium_apply_config': [ |
| 123 'mb', | 103 'mb', |
| 124 'ninja_confirm_noop', | 104 'ninja_confirm_noop', |
| 125 'archive_gpu_tests', | 105 'archive_gpu_tests', |
| 126 'chrome_with_codecs' | 106 'chrome_with_codecs' |
| 127 ], | 107 ], |
| 128 'gclient_config': 'chromium', | 108 'gclient_config': 'chromium', |
| 129 'chromium_config_kwargs': { | 109 'chromium_config_kwargs': { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 ], | 302 ], |
| 323 'bot_type': 'tester', | 303 'bot_type': 'tester', |
| 324 'parent_buildername': 'GPU Mac Builder (dbg)', | 304 'parent_buildername': 'GPU Mac Builder (dbg)', |
| 325 'testing': { | 305 'testing': { |
| 326 'platform': 'mac', | 306 'platform': 'mac', |
| 327 }, | 307 }, |
| 328 'enable_swarming': True, | 308 'enable_swarming': True, |
| 329 }, | 309 }, |
| 330 }, | 310 }, |
| 331 } | 311 } |
| OLD | NEW |