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

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

Issue 1938603002: [Android] Move Android chromium.linux compile targets into src. (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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/dynamic_swarmed_gn_instrumentation_test.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 'chromium_config': 'android', 174 'chromium_config': 'android',
175 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 175 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
176 'gclient_config': 'chromium', 176 'gclient_config': 'chromium',
177 'gclient_apply_config': ['android'], 177 'gclient_apply_config': ['android'],
178 'chromium_config_kwargs': { 178 'chromium_config_kwargs': {
179 'BUILD_CONFIG': 'Debug', 179 'BUILD_CONFIG': 'Debug',
180 'TARGET_BITS': 64, 180 'TARGET_BITS': 64,
181 'TARGET_PLATFORM': 'android', 181 'TARGET_PLATFORM': 'android',
182 }, 182 },
183 'android_config': 'arm64_builder', 183 'android_config': 'arm64_builder',
184 'compile_targets': [
185 'android_builder_tests'
186 ],
187 'testing': { 184 'testing': {
188 'platform': 'linux', 185 'platform': 'linux',
189 }, 186 },
190 }, 187 },
191 'Android Builder (dbg)': { 188 'Android Builder (dbg)': {
192 'chromium_config': 'android', 189 'chromium_config': 'android',
193 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 190 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
194 'gclient_config': 'chromium', 191 'gclient_config': 'chromium',
195 'gclient_apply_config': ['android'], 192 'gclient_apply_config': ['android'],
196 'chromium_config_kwargs': { 193 'chromium_config_kwargs': {
197 'BUILD_CONFIG': 'Debug', 194 'BUILD_CONFIG': 'Debug',
198 'TARGET_BITS': 32, 195 'TARGET_BITS': 32,
199 'TARGET_PLATFORM': 'android', 196 'TARGET_PLATFORM': 'android',
200 }, 197 },
201 'android_config': 'main_builder', 198 'android_config': 'main_builder',
202 'bot_type': 'builder', 199 'bot_type': 'builder',
203 'compile_targets': [
204 'cronet_test_instrumentation_apk',
205 'system_webview_apk',
206 ],
207 'testing': { 200 'testing': {
208 'platform': 'linux', 201 'platform': 'linux',
209 }, 202 },
210 'use_isolate': True, 203 'use_isolate': True,
211 'enable_swarming': True, 204 'enable_swarming': True,
212 }, 205 },
213 'Android GN (dbg)': { 206 'Android GN (dbg)': {
214 'chromium_config': 'android', 207 'chromium_config': 'android',
215 'chromium_apply_config': ['mb'], 208 'chromium_apply_config': ['mb'],
216 'gclient_config': 'chromium', 209 'gclient_config': 'chromium',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 256 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
264 'gclient_config': 'chromium', 257 'gclient_config': 'chromium',
265 'gclient_apply_config': ['android'], 258 'gclient_apply_config': ['android'],
266 'chromium_config_kwargs': { 259 'chromium_config_kwargs': {
267 'BUILD_CONFIG': 'Release', 260 'BUILD_CONFIG': 'Release',
268 'TARGET_BITS': 32, 261 'TARGET_BITS': 32,
269 'TARGET_PLATFORM': 'android', 262 'TARGET_PLATFORM': 'android',
270 }, 263 },
271 'android_config': 'main_builder', 264 'android_config': 'main_builder',
272 'bot_type': 'builder', 265 'bot_type': 'builder',
273 'compile_targets': [
274 'system_webview_apk',
275 ],
276 'testing': { 266 'testing': {
277 'platform': 'linux', 267 'platform': 'linux',
278 }, 268 },
279 'use_isolate': True, 269 'use_isolate': True,
280 'enable_swarming': True, 270 'enable_swarming': True,
281 }, 271 },
282 'Android Tests': { 272 'Android Tests': {
283 'chromium_config': 'android', 273 'chromium_config': 'android',
284 'chromium_apply_config': ['mb'], 274 'chromium_apply_config': ['mb'],
285 'gclient_config': 'chromium', 275 'gclient_config': 'chromium',
(...skipping 26 matching lines...) Expand all
312 'chromium_apply_config': ['chrome_with_codecs', 'errorprone', 'mb'], 302 'chromium_apply_config': ['chrome_with_codecs', 'errorprone', 'mb'],
313 'gclient_config': 'chromium', 303 'gclient_config': 'chromium',
314 'gclient_apply_config': ['android'], 304 'gclient_apply_config': ['android'],
315 'chromium_config_kwargs': { 305 'chromium_config_kwargs': {
316 'BUILD_CONFIG': 'Debug', 306 'BUILD_CONFIG': 'Debug',
317 'TARGET_BITS': 32, 307 'TARGET_BITS': 32,
318 'TARGET_PLATFORM': 'android', 308 'TARGET_PLATFORM': 'android',
319 }, 309 },
320 'android_config': 'clang_builder', 310 'android_config': 'clang_builder',
321 'bot_type': 'builder_tester', 311 'bot_type': 'builder_tester',
322 'compile_targets': [
323 'android_builder_tests',
324 'system_webview_apk',
325 ],
326 'testing': { 312 'testing': {
327 'platform': 'linux', 313 'platform': 'linux',
328 }, 314 },
329 }, 315 },
330 316
331 'Cast Linux': { 317 'Cast Linux': {
332 'chromium_config': 'cast_linux', 318 'chromium_config': 'cast_linux',
333 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 319 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
334 'gclient_config': 'chromium', 320 'gclient_config': 'chromium',
335 'chromium_config_kwargs': { 321 'chromium_config_kwargs': {
(...skipping 25 matching lines...) Expand all
361 'TARGET_BITS': 32, 347 'TARGET_BITS': 32,
362 'TARGET_PLATFORM': 'android', 348 'TARGET_PLATFORM': 'android',
363 }, 349 },
364 'android_config': 'cast_builder', 350 'android_config': 'cast_builder',
365 'testing': { 351 'testing': {
366 'platform': 'linux', 352 'platform': 'linux',
367 }, 353 },
368 }, 354 },
369 }, 355 },
370 } 356 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/dynamic_swarmed_gn_instrumentation_test.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698