| Index: scripts/slave/recipe_modules/chromium_tests/goma.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/goma.py b/scripts/slave/recipe_modules/chromium_tests/goma.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..23df4bf86bc1aac8682a90a42cef9f0ee07d21f3
|
| --- /dev/null
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/goma.py
|
| @@ -0,0 +1,55 @@
|
| +# Copyright 2015 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 = {
|
| + 'builders': {
|
| + 'Chromium Linux Goma Staging': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['goma_staging', 'clobber'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'compile_targets': [ 'chromium_builder_tests' ],
|
| + 'tests': steps.GOMA_TESTS,
|
| + 'goma_staging': True,
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + },
|
| + 'Chromium Mac Goma Staging': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['goma_staging', 'clobber'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'compile_targets': [ 'chromium_builder_tests' ],
|
| + 'tests': steps.GOMA_TESTS,
|
| + 'goma_staging': True,
|
| + 'testing': {
|
| + 'platform': 'mac',
|
| + },
|
| + },
|
| + 'Chromium Win Goma Staging': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['goma_staging', 'clobber'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'compile_targets': [ 'chromium_builder_tests' ],
|
| + 'tests': steps.GOMA_TESTS,
|
| + 'goma_staging': True,
|
| + 'testing': {
|
| + 'platform': 'win',
|
| + },
|
| + },
|
| + },
|
| +}
|
|
|