| Index: scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py b/scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6cbdb650df27f282b009f755b369f7d8e3e80a0b
|
| --- /dev/null
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py
|
| @@ -0,0 +1,55 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +from . import steps
|
| +
|
| +SPEC = {
|
| + 'settings': {
|
| + 'build_gs_bucket': 'chromium-gpu-archive',
|
| + # WARNING: src-side runtest.py is only tested with chromium CQ builders.
|
| + # Usage not covered by chromium CQ is not supported and can break
|
| + # without notice.
|
| + 'src_side_runtest_py': True,
|
| + },
|
| + 'builders': {
|
| + 'GPU Fake Linux Builder': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop',
|
| + 'archive_gpu_tests', 'chrome_with_codecs' ],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'compile_targets': [
|
| + ],
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'use_isolate': True,
|
| + 'enable_swarming': True,
|
| + },
|
| + 'Fake Linux Release (NVIDIA)': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'test_generators': [
|
| + steps.generate_gtest,
|
| + steps.generate_script,
|
| + steps.generate_isolated_script,
|
| + ],
|
| + 'parent_buildername': 'GPU Fake Linux Builder',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + },
|
| + },
|
| +}
|
|
|