| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from . import steps |
| 6 |
| 7 SPEC = { |
| 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-gpu-fyi-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 Linux Builder': { |
| 17 'chromium_config': 'chromium', |
| 18 'chromium_apply_config': ['mb', 'ninja_confirm_noop', |
| 19 'archive_gpu_tests', 'chrome_with_codecs', |
| 20 'internal_gles2_conform_tests'], |
| 21 'gclient_config': 'chromium', |
| 22 'gclient_apply_config': ['chrome_internal'], |
| 23 'chromium_config_kwargs': { |
| 24 'BUILD_CONFIG': 'Release', |
| 25 'TARGET_BITS': 64, |
| 26 }, |
| 27 'bot_type': 'builder', |
| 28 'compile_targets': [ |
| 29 ], |
| 30 'testing': { |
| 31 'platform': 'linux', |
| 32 }, |
| 33 'use_isolate': True, |
| 34 'enable_swarming': True, |
| 35 }, |
| 36 'Linux Release (NVIDIA)': { |
| 37 'chromium_config': 'chromium', |
| 38 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| 39 'gclient_config': 'chromium', |
| 40 'chromium_config_kwargs': { |
| 41 'BUILD_CONFIG': 'Release', |
| 42 'TARGET_BITS': 64, |
| 43 }, |
| 44 'bot_type': 'tester', |
| 45 'test_generators': [ |
| 46 steps.generate_gtest, |
| 47 steps.generate_script, |
| 48 steps.generate_isolated_script, |
| 49 ], |
| 50 'parent_buildername': 'GPU Linux Builder', |
| 51 'testing': { |
| 52 'platform': 'linux', |
| 53 }, |
| 54 'enable_swarming': True, |
| 55 }, |
| 56 }, |
| 57 } |
| OLD | NEW |