| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 'TARGET_BITS': 64, | 112 'TARGET_BITS': 64, |
| 113 }, | 113 }, |
| 114 'bot_type': 'builder', | 114 'bot_type': 'builder', |
| 115 'compile_targets': [ | 115 'compile_targets': [ |
| 116 ], | 116 ], |
| 117 'testing': { | 117 'testing': { |
| 118 'platform': 'linux', | 118 'platform': 'linux', |
| 119 }, | 119 }, |
| 120 'use_isolate': True, | 120 'use_isolate': True, |
| 121 'enable_swarming': True, | 121 'enable_swarming': True, |
| 122 'checkout_dir': 'linux', |
| 122 }, | 123 }, |
| 123 'GPU Linux Builder (dbg)': { | 124 'GPU Linux Builder (dbg)': { |
| 124 'chromium_config': 'chromium', | 125 'chromium_config': 'chromium', |
| 125 'chromium_apply_config': [ | 126 'chromium_apply_config': [ |
| 126 'mb', | 127 'mb', |
| 127 'ninja_confirm_noop', | 128 'ninja_confirm_noop', |
| 128 'archive_gpu_tests', | 129 'archive_gpu_tests', |
| 129 'chrome_with_codecs' | 130 'chrome_with_codecs' |
| 130 ], | 131 ], |
| 131 'gclient_config': 'chromium', | 132 'gclient_config': 'chromium', |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 ], | 305 ], |
| 305 'bot_type': 'tester', | 306 'bot_type': 'tester', |
| 306 'parent_buildername': 'GPU Mac Builder (dbg)', | 307 'parent_buildername': 'GPU Mac Builder (dbg)', |
| 307 'testing': { | 308 'testing': { |
| 308 'platform': 'mac', | 309 'platform': 'mac', |
| 309 }, | 310 }, |
| 310 'enable_swarming': True, | 311 'enable_swarming': True, |
| 311 }, | 312 }, |
| 312 }, | 313 }, |
| 313 } | 314 } |
| OLD | NEW |