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

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

Issue 1996053002: [Android] Turn down gn-specific Android bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 7 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 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-linux-archive', 9 'build_gs_bucket': 'chromium-linux-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.
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 steps.generate_script, 129 steps.generate_script,
130 steps.generate_isolated_script, 130 steps.generate_isolated_script,
131 ], 131 ],
132 'parent_buildername': 'Linux Builder (dbg)', 132 'parent_buildername': 'Linux Builder (dbg)',
133 'testing': { 133 'testing': {
134 'platform': 'linux', 134 'platform': 'linux',
135 }, 135 },
136 'enable_swarming': True, 136 'enable_swarming': True,
137 }, 137 },
138 138
139 'Android GN': {
140 'chromium_config': 'android',
141 'chromium_apply_config': ['mb'],
142 'gclient_config': 'chromium',
143 'gclient_apply_config': ['android'],
144 'chromium_config_kwargs': {
145 'BUILD_CONFIG': 'Release',
146 'TARGET_PLATFORM': 'android',
147 'TARGET_ARCH': 'arm',
148 },
149 'android_config': 'main_builder',
150 'test_generators': [
151 steps.generate_gtest,
152 steps.generate_instrumentation_test,
153 steps.generate_script,
154 steps.generate_isolated_script,
155 steps.generate_junit_test,
156 ],
157 'tests': [],
158 'testing': {
159 'platform': 'linux',
160 },
161 },
162 'Android Arm64 Builder (dbg)': { 139 'Android Arm64 Builder (dbg)': {
163 'chromium_config': 'android', 140 'chromium_config': 'android',
164 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 141 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
165 'gclient_config': 'chromium', 142 'gclient_config': 'chromium',
166 'gclient_apply_config': ['android'], 143 'gclient_apply_config': ['android'],
167 'chromium_config_kwargs': { 144 'chromium_config_kwargs': {
168 'BUILD_CONFIG': 'Debug', 145 'BUILD_CONFIG': 'Debug',
169 'TARGET_BITS': 64, 146 'TARGET_BITS': 64,
170 'TARGET_PLATFORM': 'android', 147 'TARGET_PLATFORM': 'android',
171 }, 148 },
(...skipping 13 matching lines...) Expand all
185 'TARGET_PLATFORM': 'android', 162 'TARGET_PLATFORM': 'android',
186 }, 163 },
187 'android_config': 'main_builder', 164 'android_config': 'main_builder',
188 'bot_type': 'builder', 165 'bot_type': 'builder',
189 'testing': { 166 'testing': {
190 'platform': 'linux', 167 'platform': 'linux',
191 }, 168 },
192 'use_isolate': True, 169 'use_isolate': True,
193 'enable_swarming': True, 170 'enable_swarming': True,
194 }, 171 },
195 'Android GN (dbg)': {
196 'chromium_config': 'android',
197 'chromium_apply_config': ['mb'],
198 'gclient_config': 'chromium',
199 'gclient_apply_config': ['android'],
200 'chromium_config_kwargs': {
201 'BUILD_CONFIG': 'Debug',
202 'TARGET_PLATFORM': 'android',
203 'TARGET_ARCH': 'arm',
204 },
205 'android_config': 'main_builder',
206 'test_generators': [
207 steps.generate_gtest,
208 steps.generate_script,
209 steps.generate_isolated_script,
210 ],
211 'testing': {
212 'platform': 'linux',
213 },
214 },
215 'Android Tests (dbg)': { 172 'Android Tests (dbg)': {
216 'chromium_config': 'android', 173 'chromium_config': 'android',
217 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 174 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
218 'gclient_config': 'chromium', 175 'gclient_config': 'chromium',
219 'gclient_apply_config': ['android'], 176 'gclient_apply_config': ['android'],
220 'chromium_config_kwargs': { 177 'chromium_config_kwargs': {
221 'BUILD_CONFIG': 'Debug', 178 'BUILD_CONFIG': 'Debug',
222 'TARGET_BITS': 32, 179 'TARGET_BITS': 32,
223 'TARGET_PLATFORM': 'android', 180 'TARGET_PLATFORM': 'android',
224 }, 181 },
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 'TARGET_BITS': 32, 293 'TARGET_BITS': 32,
337 'TARGET_PLATFORM': 'android', 294 'TARGET_PLATFORM': 'android',
338 }, 295 },
339 'android_config': 'cast_builder', 296 'android_config': 'cast_builder',
340 'testing': { 297 'testing': {
341 'platform': 'linux', 298 'platform': 'linux',
342 }, 299 },
343 }, 300 },
344 }, 301 },
345 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698