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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium.py

Issue 1905213002: Move Win x64 clobber bot and remove Win x64 GN bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix indent Created 4 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'builders': { 8 'builders': {
9 'Win': { 9 'Win': {
10 'chromium_config': 'chromium', 10 'chromium_config': 'chromium',
(...skipping 16 matching lines...) Expand all
27 steps.generate_script, 27 steps.generate_script,
28 steps.generate_isolated_script, 28 steps.generate_isolated_script,
29 ], 29 ],
30 'archive_build': True, 30 'archive_build': True,
31 'gs_bucket': 'chromium-browser-snapshots', 31 'gs_bucket': 'chromium-browser-snapshots',
32 'gs_acl': 'public-read', 32 'gs_acl': 'public-read',
33 'testing': { 33 'testing': {
34 'platform': 'win', 34 'platform': 'win',
35 }, 35 },
36 }, 36 },
37 'Win x64': {
38 'chromium_config': 'chromium',
39 'chromium_apply_config': [
40 'clobber',
41 'isolation_mode_noop',
42 'ninja_confirm_noop',
43 'no_dump_symbols',
44 ],
45 'gclient_config': 'chromium',
46 'chromium_config_kwargs': {
47 'BUILD_CONFIG': 'Release',
48 'TARGET_BITS': 64,
49 },
50 'compile_targets': [
51 'all',
52 ],
53 'test_generators': [
54 steps.generate_gtest,
55 steps.generate_script,
56 steps.generate_isolated_script,
57 ],
58 'archive_build': True,
59 'gs_bucket': 'chromium-browser-snapshots',
60 'gs_acl': 'public-read',
61 'testing': {
62 'platform': 'win',
63 },
64 },
37 'Mac': { 65 'Mac': {
38 'chromium_config': 'chromium', 66 'chromium_config': 'chromium',
39 'chromium_apply_config': [ 67 'chromium_apply_config': [
40 'clobber', 68 'clobber',
41 'isolation_mode_noop', 69 'isolation_mode_noop',
42 'ninja_confirm_noop', 70 'ninja_confirm_noop',
43 'no_dump_symbols', 71 'no_dump_symbols',
44 ], 72 ],
45 'gclient_config': 'chromium', 73 'gclient_config': 'chromium',
46 'chromium_config_kwargs': { 74 'chromium_config_kwargs': {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 ], 141 ],
114 'archive_build': True, 142 'archive_build': True,
115 'gs_bucket': 'chromium-browser-snapshots', 143 'gs_bucket': 'chromium-browser-snapshots',
116 'gs_acl': 'public-read', 144 'gs_acl': 'public-read',
117 'testing': { 145 'testing': {
118 'platform': 'linux', 146 'platform': 'linux',
119 }, 147 },
120 }, 148 },
121 }, 149 },
122 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698