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

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

Issue 2489853003: Add a Nougat Tester to chromium.android.fyi (Closed)
Patch Set: add myself to OWNERS of android* Created 4 years 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'chromium_config_kwargs': { 130 'chromium_config_kwargs': {
131 'BUILD_CONFIG': 'Debug', 131 'BUILD_CONFIG': 'Debug',
132 'TARGET_PLATFORM': 'android', 132 'TARGET_PLATFORM': 'android',
133 }, 133 },
134 'bot_type': 'builder', 134 'bot_type': 'builder',
135 'android_config': 'x86_builder_mb', 135 'android_config': 'x86_builder_mb',
136 'testing': { 136 'testing': {
137 'platform': 'linux', 137 'platform': 'linux',
138 }, 138 },
139 }, 139 },
140
141 'Nougat Phone Tester': {
142 'use_isolate': True,
143 'enable_swarming': True,
144 'chromium_config': 'android',
145 'gclient_config': 'chromium',
146 'gclient_apply_config': ['android'],
147 'chromium_config_kwargs': {
148 'BUILD_CONFIG': 'Debug',
149 'TARGET_PLATFORM': 'android',
150 },
151 'parent_buildername': 'Android arm64 Builder (dbg)',
152 'parent_mastername': 'chromium.android',
153 'bot_type': 'tester',
154 'android_config': 'arm64_builder_mb',
155 'test_results_config': 'public_server',
156 'testing': {
157 'platform': 'linux',
158 },
159 },
140 }, 160 },
141 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698