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

Unified Diff: scripts/slave/recipe_modules/chromium/chromium_win.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 years, 6 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/chromium_win.py
diff --git a/scripts/slave/recipe_modules/chromium/chromium_win.py b/scripts/slave/recipe_modules/chromium/chromium_win.py
deleted file mode 100644
index ec426b4e39f76ad58bf2ae2b3b5cf032d14b0d91..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/chromium/chromium_win.py
+++ /dev/null
@@ -1,203 +0,0 @@
-# Copyright 2014 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-win-archive',
- },
- 'builders': {
- 'Win Builder': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'compile_targets': [
- 'chromium_builder_tests',
- ],
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'XP Tests (1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Win Builder',
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'swarming_dimensions': {
- 'cpu': 'x86-32',
- 'os': 'Windows-XP-SP3',
- },
- },
- 'Vista Tests (1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Win Builder',
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'swarming_dimensions': {
- 'os': 'Windows-Vista-SP2',
- },
- },
- 'Win7 Tests (1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'tests': [
- steps.MiniInstallerTest(),
- ],
- 'parent_buildername': 'Win Builder',
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- },
- 'Win x64 Builder': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'compile_targets': [
- 'all',
- ],
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'Win 7 Tests x64 (1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'tests': [
- steps.MiniInstallerTest(),
- ],
- 'parent_buildername': 'Win x64 Builder',
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- },
-
- 'Win x64 Builder (dbg)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'compile_targets': [
- 'all',
- ],
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'use_isolate': True,
- },
-
- 'Win Builder (dbg)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'compile_targets': [
- 'chromium_builder_tests',
- ],
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'Win7 Tests (dbg)(1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Win Builder (dbg)',
- 'testing': {
- 'platform': 'win',
- },
- 'enable_swarming': True,
- },
- 'Win8 Aura': {
- 'chromium_config': 'chromium',
- 'chromium_apply_config': ['mb'],
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder_tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'testing': {
- 'platform': 'win',
- },
- },
- },
-}
« no previous file with comments | « scripts/slave/recipe_modules/chromium/chromium_webkit.py ('k') | scripts/slave/recipe_modules/chromium/client_skia.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698