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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 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-win-archive',
10 },
11 'builders': {
12 'Win Builder': {
13 'chromium_config': 'chromium',
14 'gclient_config': 'chromium',
15 'chromium_config_kwargs': {
16 'BUILD_CONFIG': 'Release',
17 'TARGET_BITS': 32,
18 },
19 'bot_type': 'builder',
20 'compile_targets': [
21 'chromium_builder_tests',
22 ],
23 'testing': {
24 'platform': 'win',
25 },
26 'enable_swarming': True,
27 'use_isolate': True,
28 },
29 'XP Tests (1)': {
30 'chromium_config': 'chromium',
31 'gclient_config': 'chromium',
32 'chromium_config_kwargs': {
33 'BUILD_CONFIG': 'Release',
34 'TARGET_BITS': 32,
35 },
36 'bot_type': 'tester',
37 'test_generators': [
38 steps.generate_gtest,
39 steps.generate_script,
40 ],
41 'parent_buildername': 'Win Builder',
42 'testing': {
43 'platform': 'win',
44 },
45 'enable_swarming': True,
46 'swarming_dimensions': {
47 'cpu': 'x86-32',
48 'os': 'Windows-XP-SP3',
49 },
50 },
51 'Vista Tests (1)': {
52 'chromium_config': 'chromium',
53 'gclient_config': 'chromium',
54 'chromium_config_kwargs': {
55 'BUILD_CONFIG': 'Release',
56 'TARGET_BITS': 32,
57 },
58 'bot_type': 'tester',
59 'test_generators': [
60 steps.generate_gtest,
61 steps.generate_script,
62 ],
63 'parent_buildername': 'Win Builder',
64 'testing': {
65 'platform': 'win',
66 },
67 'enable_swarming': True,
68 'swarming_dimensions': {
69 'os': 'Windows-Vista-SP2',
70 },
71 },
72 'Win7 Tests (1)': {
73 'chromium_config': 'chromium',
74 'gclient_config': 'chromium',
75 'chromium_config_kwargs': {
76 'BUILD_CONFIG': 'Release',
77 'TARGET_BITS': 32,
78 },
79 'bot_type': 'tester',
80 'test_generators': [
81 steps.generate_gtest,
82 steps.generate_script,
83 ],
84 'tests': [
85 steps.MiniInstallerTest(),
86 ],
87 'parent_buildername': 'Win Builder',
88 'testing': {
89 'platform': 'win',
90 },
91 'enable_swarming': True,
92 },
93 'Win x64 Builder': {
94 'chromium_config': 'chromium',
95 'gclient_config': 'chromium',
96 'chromium_config_kwargs': {
97 'BUILD_CONFIG': 'Release',
98 'TARGET_BITS': 64,
99 },
100 'bot_type': 'builder',
101 'compile_targets': [
102 'all',
103 ],
104 'testing': {
105 'platform': 'win',
106 },
107 'enable_swarming': True,
108 'use_isolate': True,
109 },
110 'Win 7 Tests x64 (1)': {
111 'chromium_config': 'chromium',
112 'gclient_config': 'chromium',
113 'chromium_config_kwargs': {
114 'BUILD_CONFIG': 'Release',
115 'TARGET_BITS': 64,
116 },
117 'bot_type': 'tester',
118 'test_generators': [
119 steps.generate_gtest,
120 steps.generate_script,
121 ],
122 'tests': [
123 steps.MiniInstallerTest(),
124 ],
125 'parent_buildername': 'Win x64 Builder',
126 'testing': {
127 'platform': 'win',
128 },
129 'enable_swarming': True,
130 },
131
132 'Win x64 Builder (dbg)': {
133 'chromium_config': 'chromium',
134 'gclient_config': 'chromium',
135 'chromium_config_kwargs': {
136 'BUILD_CONFIG': 'Debug',
137 'TARGET_BITS': 64,
138 },
139 'bot_type': 'builder',
140 'compile_targets': [
141 'all',
142 ],
143 'testing': {
144 'platform': 'win',
145 },
146 'enable_swarming': True,
147 'use_isolate': True,
148 },
149
150 'Win Builder (dbg)': {
151 'chromium_config': 'chromium',
152 'gclient_config': 'chromium',
153 'chromium_config_kwargs': {
154 'BUILD_CONFIG': 'Debug',
155 'TARGET_BITS': 32,
156 },
157 'bot_type': 'builder',
158 'compile_targets': [
159 'chromium_builder_tests',
160 ],
161 'testing': {
162 'platform': 'win',
163 },
164 'enable_swarming': True,
165 'use_isolate': True,
166 },
167 'Win7 Tests (dbg)(1)': {
168 'chromium_config': 'chromium',
169 'gclient_config': 'chromium',
170 'chromium_config_kwargs': {
171 'BUILD_CONFIG': 'Debug',
172 'TARGET_BITS': 32,
173 },
174 'bot_type': 'tester',
175 'test_generators': [
176 steps.generate_gtest,
177 steps.generate_script,
178 ],
179 'parent_buildername': 'Win Builder (dbg)',
180 'testing': {
181 'platform': 'win',
182 },
183 'enable_swarming': True,
184 },
185 'Win8 Aura': {
186 'chromium_config': 'chromium',
187 'chromium_apply_config': ['mb'],
188 'gclient_config': 'chromium',
189 'chromium_config_kwargs': {
190 'BUILD_CONFIG': 'Debug',
191 'TARGET_BITS': 32,
192 },
193 'bot_type': 'builder_tester',
194 'test_generators': [
195 steps.generate_gtest,
196 steps.generate_script,
197 ],
198 'testing': {
199 'platform': 'win',
200 },
201 },
202 },
203 }
OLDNEW
« 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