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

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

Issue 1996053002: [Android] Turn down gn-specific Android bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: expectation changes 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 7
8 SPEC = { 8 SPEC = {
9 'settings': { 9 'settings': {
10 'build_gs_bucket': 'chromium-android-archive', 10 'build_gs_bucket': 'chromium-android-archive',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'TARGET_BITS': 32, 88 'TARGET_BITS': 32,
89 'TARGET_PLATFORM': 'android', 89 'TARGET_PLATFORM': 'android',
90 }, 90 },
91 'android_config': 'x86_builder_mb', 91 'android_config': 'x86_builder_mb',
92 'bot_type': 'builder', 92 'bot_type': 'builder',
93 'testing': { 93 'testing': {
94 'platform': 'linux', 94 'platform': 'linux',
95 }, 95 },
96 }, 96 },
97 97
98 'Android GN Builder (dbg)': {
99 'chromium_config': 'android',
100 'chromium_apply_config': ['chrome_with_codecs'],
101 'gclient_config': 'chromium',
102 'gclient_apply_config': ['android'],
103 'chromium_config_kwargs': {
104 'BUILD_CONFIG': 'Debug',
105 'TARGET_PLATFORM': 'android',
106 'TARGET_ARCH': 'arm',
107 },
108 'android_config': 'main_builder_mb',
109 'test_generators': [
110 steps.generate_gtest,
111 steps.generate_instrumentation_test,
112 steps.generate_isolated_script,
113 steps.generate_junit_test,
114 steps.generate_script,
115 ],
116 'bot_type': 'builder',
117 'testing': {
118 'platform': 'linux',
119 },
120 },
121
122 'Jelly Bean Tester': { 98 'Jelly Bean Tester': {
123 'chromium_config': 'android', 99 'chromium_config': 'android',
124 'gclient_config': 'chromium', 100 'gclient_config': 'chromium',
125 'gclient_apply_config': ['android'], 101 'gclient_apply_config': ['android'],
126 'chromium_config_kwargs': { 102 'chromium_config_kwargs': {
127 'BUILD_CONFIG': 'Debug', 103 'BUILD_CONFIG': 'Debug',
128 'TARGET_PLATFORM': 'android', 104 'TARGET_PLATFORM': 'android',
129 }, 105 },
130 'parent_buildername': 'Android arm Builder (dbg)', 106 'parent_buildername': 'Android arm Builder (dbg)',
131 'bot_type': 'tester', 107 'bot_type': 'tester',
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 steps.generate_script, 407 steps.generate_script,
432 steps.generate_isolated_script, 408 steps.generate_isolated_script,
433 steps.generate_junit_test, 409 steps.generate_junit_test,
434 ], 410 ],
435 'testing': { 411 'testing': {
436 'platform': 'linux', 412 'platform': 'linux',
437 }, 413 },
438 }, 414 },
439 }, 415 },
440 } 416 }
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.android/builders.pyl ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_linux.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698