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

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

Issue 2154213004: Revert of tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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
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 13 matching lines...) Expand all
24 'all', 24 'all',
25 ], 25 ],
26 'test_generators': [ 26 'test_generators': [
27 steps.generate_gtest, 27 steps.generate_gtest,
28 steps.generate_script, 28 steps.generate_script,
29 steps.generate_isolated_script, 29 steps.generate_isolated_script,
30 ], 30 ],
31 'archive_build': True, 31 'archive_build': True,
32 'gs_bucket': 'chromium-browser-snapshots', 32 'gs_bucket': 'chromium-browser-snapshots',
33 'gs_acl': 'public-read', 33 'gs_acl': 'public-read',
34 'checkout_dir': 'win_archive',
35 'testing': { 34 'testing': {
36 'platform': 'win', 35 'platform': 'win',
37 }, 36 },
38 }, 37 },
39 'Win x64': { 38 'Win x64': {
40 'chromium_config': 'chromium', 39 'chromium_config': 'chromium',
41 'chromium_apply_config': [ 40 'chromium_apply_config': [
42 'clobber', 41 'clobber',
43 'isolation_mode_noop', 42 'isolation_mode_noop',
44 'ninja_confirm_noop', 43 'ninja_confirm_noop',
45 'no_dump_symbols', 44 'no_dump_symbols',
46 ], 45 ],
47 'gclient_config': 'chromium', 46 'gclient_config': 'chromium',
48 'chromium_config_kwargs': { 47 'chromium_config_kwargs': {
49 'BUILD_CONFIG': 'Release', 48 'BUILD_CONFIG': 'Release',
50 'TARGET_BITS': 64, 49 'TARGET_BITS': 64,
51 }, 50 },
52 'compile_targets': [ 51 'compile_targets': [
53 'all', 52 'all',
54 ], 53 ],
55 'test_generators': [ 54 'test_generators': [
56 steps.generate_gtest, 55 steps.generate_gtest,
57 steps.generate_script, 56 steps.generate_script,
58 steps.generate_isolated_script, 57 steps.generate_isolated_script,
59 ], 58 ],
60 'archive_build': True, 59 'archive_build': True,
61 'gs_bucket': 'chromium-browser-snapshots', 60 'gs_bucket': 'chromium-browser-snapshots',
62 'gs_acl': 'public-read', 61 'gs_acl': 'public-read',
63 'checkout_dir': 'win_x64_archive',
64 'testing': { 62 'testing': {
65 'platform': 'win', 63 'platform': 'win',
66 }, 64 },
67 }, 65 },
68 'Mac': { 66 'Mac': {
69 'chromium_config': 'chromium', 67 'chromium_config': 'chromium',
70 'chromium_apply_config': [ 68 'chromium_apply_config': [
71 'clobber', 69 'clobber',
72 'isolation_mode_noop', 70 'isolation_mode_noop',
73 'mb', 71 'mb',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ], 145 ],
148 'archive_build': True, 146 'archive_build': True,
149 'gs_bucket': 'chromium-browser-snapshots', 147 'gs_bucket': 'chromium-browser-snapshots',
150 'gs_acl': 'public-read', 148 'gs_acl': 'public-read',
151 'testing': { 149 'testing': {
152 'platform': 'linux', 150 'platform': 'linux',
153 }, 151 },
154 }, 152 },
155 }, 153 },
156 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698