Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py

Issue 1554383003: Add support for "additional_mirrors" property in trybot configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..e143b950e2fee8e86a796cf8adba8948f98a9b63
--- /dev/null
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_gpu.py
@@ -0,0 +1,57 @@
+# 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 = {
+ 'settings': {
+ 'build_gs_bucket': 'chromium-gpu-fyi-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 Linux Builder': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop',
+ 'archive_gpu_tests', 'chrome_with_codecs',
+ 'internal_gles2_conform_tests'],
+ 'gclient_config': 'chromium',
+ 'gclient_apply_config': ['chrome_internal'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'compile_targets': [
+ ],
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'use_isolate': True,
+ 'enable_swarming': True,
+ },
+ '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 Linux Builder',
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'enable_swarming': True,
+ },
+ },
+}

Powered by Google App Engine
This is Rietveld 408576698