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

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

Issue 1466563002: Remove the 'compile_targets' from 'Linux x64' on the chromium waterfall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 1 month 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'isolation_mode_noop', 97 'isolation_mode_noop',
98 'mb', 98 'mb',
99 'ninja_confirm_noop', 99 'ninja_confirm_noop',
100 'no_dump_symbols', 100 'no_dump_symbols',
101 ], 101 ],
102 'gclient_config': 'chromium', 102 'gclient_config': 'chromium',
103 'chromium_config_kwargs': { 103 'chromium_config_kwargs': {
104 'BUILD_CONFIG': 'Release', 104 'BUILD_CONFIG': 'Release',
105 'TARGET_BITS': 64, 105 'TARGET_BITS': 64,
106 }, 106 },
107 'compile_targets': [
108 'all',
109 ],
110 'test_generators': [ 107 'test_generators': [
111 steps.generate_gtest, 108 steps.generate_gtest,
112 steps.generate_script, 109 steps.generate_script,
113 steps.generate_isolated_script, 110 steps.generate_isolated_script,
114 ], 111 ],
115 'archive_build': True, 112 'archive_build': True,
116 'gs_bucket': 'chromium-browser-snapshots', 113 'gs_bucket': 'chromium-browser-snapshots',
117 'gs_acl': 'public-read', 114 'gs_acl': 'public-read',
118 'testing': { 115 'testing': {
119 'platform': 'linux', 116 'platform': 'linux',
(...skipping 24 matching lines...) Expand all
144 ], 141 ],
145 'archive_build': True, 142 'archive_build': True,
146 'gs_bucket': 'chromium-browser-snapshots', 143 'gs_bucket': 'chromium-browser-snapshots',
147 'gs_acl': 'public-read', 144 'gs_acl': 'public-read',
148 'testing': { 145 'testing': {
149 'platform': 'linux', 146 'platform': 'linux',
150 }, 147 },
151 }, 148 },
152 }, 149 },
153 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698