| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from . import steps |
| 6 |
| 7 SPEC = { |
| 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-gpu-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| 11 # Usage not covered by chromium CQ is not supported and can break |
| 12 # without notice. |
| 13 'src_side_runtest_py': True, |
| 14 }, |
| 15 'builders': { |
| 16 'GPU Fake Linux Builder': { |
| 17 'chromium_config': 'chromium', |
| 18 'chromium_apply_config': ['mb', 'ninja_confirm_noop', |
| 19 'archive_gpu_tests', 'chrome_with_codecs' ], |
| 20 'gclient_config': 'chromium', |
| 21 'chromium_config_kwargs': { |
| 22 'BUILD_CONFIG': 'Release', |
| 23 'TARGET_BITS': 64, |
| 24 }, |
| 25 'bot_type': 'builder', |
| 26 'compile_targets': [ |
| 27 ], |
| 28 'testing': { |
| 29 'platform': 'linux', |
| 30 }, |
| 31 'use_isolate': True, |
| 32 'enable_swarming': True, |
| 33 }, |
| 34 'Fake Linux Release (NVIDIA)': { |
| 35 'chromium_config': 'chromium', |
| 36 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| 37 'gclient_config': 'chromium', |
| 38 'chromium_config_kwargs': { |
| 39 'BUILD_CONFIG': 'Release', |
| 40 'TARGET_BITS': 64, |
| 41 }, |
| 42 'bot_type': 'tester', |
| 43 'test_generators': [ |
| 44 steps.generate_gtest, |
| 45 steps.generate_script, |
| 46 steps.generate_isolated_script, |
| 47 ], |
| 48 'parent_buildername': 'GPU Fake Linux Builder', |
| 49 'testing': { |
| 50 'platform': 'linux', |
| 51 }, |
| 52 'enable_swarming': True, |
| 53 }, |
| 54 }, |
| 55 } |
| OLD | NEW |