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

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

Issue 1408863011: infra: Remove all references to the OSX 10.10 SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove another newly added 10_10 sdk reference. 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-mac-archive', 9 'build_gs_bucket': 'chromium-mac-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
11 # Usage not covered by chromium CQ is not supported and can break 11 # Usage not covered by chromium CQ is not supported and can break
12 # without notice. 12 # without notice.
13 'src_side_runtest_py': True, 13 'src_side_runtest_py': True,
14 }, 14 },
15 'builders': { 15 'builders': {
16 'Mac Builder': { 16 'Mac Builder': {
17 'chromium_config': 'chromium', 17 'chromium_config': 'chromium',
18 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 18 'chromium_apply_config': ['ninja_confirm_noop'],
19 'gclient_config': 'chromium', 19 'gclient_config': 'chromium',
20 'chromium_config_kwargs': { 20 'chromium_config_kwargs': {
21 'BUILD_CONFIG': 'Release', 21 'BUILD_CONFIG': 'Release',
22 'TARGET_BITS': 64, 22 'TARGET_BITS': 64,
23 }, 23 },
24 'bot_type': 'builder', 24 'bot_type': 'builder',
25 'compile_targets': [ 25 'compile_targets': [
26 'chromium_builder_tests', 26 'chromium_builder_tests',
27 ], 27 ],
28 'testing': { 28 'testing': {
29 'platform': 'mac', 29 'platform': 'mac',
30 }, 30 },
31 'enable_swarming': True, 31 'enable_swarming': True,
32 'use_isolate': True, 32 'use_isolate': True,
33 }, 33 },
34 'Mac10.6 Tests': { 34 'Mac10.6 Tests': {
35 'chromium_config': 'chromium', 35 'chromium_config': 'chromium',
36 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 36 'chromium_apply_config': ['ninja_confirm_noop'],
37 'gclient_config': 'chromium', 37 'gclient_config': 'chromium',
38 'chromium_config_kwargs': { 38 'chromium_config_kwargs': {
39 'BUILD_CONFIG': 'Release', 39 'BUILD_CONFIG': 'Release',
40 'TARGET_BITS': 64, 40 'TARGET_BITS': 64,
41 }, 41 },
42 'test_generators': [ 42 'test_generators': [
43 steps.generate_gtest, 43 steps.generate_gtest,
44 steps.generate_script, 44 steps.generate_script,
45 steps.generate_isolated_script, 45 steps.generate_isolated_script,
46 ], 46 ],
47 'bot_type': 'tester', 47 'bot_type': 'tester',
48 'parent_buildername': 'Mac Builder', 48 'parent_buildername': 'Mac Builder',
49 'testing': { 49 'testing': {
50 'platform': 'mac', 50 'platform': 'mac',
51 }, 51 },
52 'enable_swarming': True, 52 'enable_swarming': True,
53 'swarming_dimensions': { 53 'swarming_dimensions': {
54 'os': 'Mac-10.6', 54 'os': 'Mac-10.6',
55 }, 55 },
56 }, 56 },
57 'Mac10.8 Tests': { 57 'Mac10.8 Tests': {
58 'chromium_config': 'chromium', 58 'chromium_config': 'chromium',
59 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 59 'chromium_apply_config': ['ninja_confirm_noop'],
60 'gclient_config': 'chromium', 60 'gclient_config': 'chromium',
61 'chromium_config_kwargs': { 61 'chromium_config_kwargs': {
62 'BUILD_CONFIG': 'Release', 62 'BUILD_CONFIG': 'Release',
63 'TARGET_BITS': 64, 63 'TARGET_BITS': 64,
64 }, 64 },
65 'test_generators': [ 65 'test_generators': [
66 steps.generate_gtest, 66 steps.generate_gtest,
67 steps.generate_script, 67 steps.generate_script,
68 steps.generate_isolated_script, 68 steps.generate_isolated_script,
69 ], 69 ],
70 'bot_type': 'tester', 70 'bot_type': 'tester',
71 'parent_buildername': 'Mac Builder', 71 'parent_buildername': 'Mac Builder',
72 'testing': { 72 'testing': {
73 'platform': 'mac', 73 'platform': 'mac',
74 }, 74 },
75 'enable_swarming': True, 75 'enable_swarming': True,
76 'swarming_dimensions': { 76 'swarming_dimensions': {
77 'os': 'Mac-10.8', 77 'os': 'Mac-10.8',
78 }, 78 },
79 }, 79 },
80 'Mac10.9 Tests': { 80 'Mac10.9 Tests': {
81 'chromium_config': 'chromium', 81 'chromium_config': 'chromium',
82 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 82 'chromium_apply_config': ['ninja_confirm_noop'],
83 'gclient_config': 'chromium', 83 'gclient_config': 'chromium',
84 'chromium_config_kwargs': { 84 'chromium_config_kwargs': {
85 'BUILD_CONFIG': 'Release', 85 'BUILD_CONFIG': 'Release',
86 'TARGET_BITS': 64, 86 'TARGET_BITS': 64,
87 }, 87 },
88 'test_generators': [ 88 'test_generators': [
89 steps.generate_gtest, 89 steps.generate_gtest,
90 steps.generate_script, 90 steps.generate_script,
91 steps.generate_isolated_script, 91 steps.generate_isolated_script,
92 ], 92 ],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 steps.generate_script, 132 steps.generate_script,
133 steps.generate_isolated_script, 133 steps.generate_isolated_script,
134 ], 134 ],
135 'enable_swarming': True, 135 'enable_swarming': True,
136 'testing': { 136 'testing': {
137 'platform': 'mac', 137 'platform': 'mac',
138 }, 138 },
139 }, 139 },
140 'Mac Builder (dbg)': { 140 'Mac Builder (dbg)': {
141 'chromium_config': 'chromium', 141 'chromium_config': 'chromium',
142 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 142 'chromium_apply_config': ['ninja_confirm_noop'],
143 'gclient_config': 'chromium', 143 'gclient_config': 'chromium',
144 'chromium_config_kwargs': { 144 'chromium_config_kwargs': {
145 'BUILD_CONFIG': 'Debug', 145 'BUILD_CONFIG': 'Debug',
146 'TARGET_BITS': 64, 146 'TARGET_BITS': 64,
147 }, 147 },
148 'bot_type': 'builder', 148 'bot_type': 'builder',
149 'compile_targets': [ 149 'compile_targets': [
150 'chromium_builder_tests', 150 'chromium_builder_tests',
151 ], 151 ],
152 'testing': { 152 'testing': {
153 'platform': 'mac', 153 'platform': 'mac',
154 }, 154 },
155 'enable_swarming': True, 155 'enable_swarming': True,
156 'use_isolate': True, 156 'use_isolate': True,
157 }, 157 },
158 'Mac10.9 Tests (dbg)': { 158 'Mac10.9 Tests (dbg)': {
159 'chromium_config': 'chromium', 159 'chromium_config': 'chromium',
160 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 160 'chromium_apply_config': ['ninja_confirm_noop'],
161 'gclient_config': 'chromium', 161 'gclient_config': 'chromium',
162 'chromium_config_kwargs': { 162 'chromium_config_kwargs': {
163 'BUILD_CONFIG': 'Debug', 163 'BUILD_CONFIG': 'Debug',
164 'TARGET_BITS': 64, 164 'TARGET_BITS': 64,
165 }, 165 },
166 'test_generators': [ 166 'test_generators': [
167 steps.generate_gtest, 167 steps.generate_gtest,
168 steps.generate_script, 168 steps.generate_script,
169 steps.generate_isolated_script, 169 steps.generate_isolated_script,
170 ], 170 ],
(...skipping 20 matching lines...) Expand all
191 steps.generate_script, 191 steps.generate_script,
192 steps.generate_isolated_script, 192 steps.generate_isolated_script,
193 ], 193 ],
194 'enable_swarming': True, 194 'enable_swarming': True,
195 'testing': { 195 'testing': {
196 'platform': 'mac', 196 'platform': 'mac',
197 }, 197 },
198 }, 198 },
199 }, 199 },
200 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698