Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py |
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5a5e5496ae3335897986ae47df1cf182fc2bf5d5 |
| --- /dev/null |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py |
| @@ -0,0 +1,84 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +from . import steps |
| + |
| + |
| +SPEC = { |
| + 'settings': { |
| + 'build_gs_bucket': 'chromium-android-archive', |
| + }, |
| + 'builders': { |
| + 'Jelly Bean Tester': { |
| + 'chromium_config': 'android', |
| + 'gclient_config': 'chromium', |
| + 'gclient_apply_config': ['android'], |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + }, |
| + 'parent_buildername': 'Android arm Builder (dbg)', |
| + 'parent_mastername': 'chromium.android', |
| + 'bot_type': 'tester', |
| + 'android_config': 'main_builder_mb', |
| + 'test_results_config': 'public_server', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| + |
| + 'KitKat Tablet Tester': { |
|
bpastene
2016/11/12 00:19:03
Is this bot getting moved over? It's not on https:
hinoka
2016/11/12 01:16:48
this wasn't supposed to be here
|
| + 'chromium_config': 'android', |
| + 'gclient_config': 'chromium', |
| + 'gclient_apply_config': ['android'], |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + }, |
| + 'parent_buildername': 'Android arm Builder (dbg)', |
| + 'parent_mastername': 'chromium.android', |
| + 'bot_type': 'tester', |
| + 'android_config': 'main_builder_mb', |
| + 'test_results_config': 'public_server', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| + |
| + 'Lollipop Consumer Tester': { |
| + 'chromium_config': 'android', |
| + 'gclient_config': 'chromium', |
| + 'gclient_apply_config': ['android'], |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + }, |
| + 'parent_buildername': 'Android arm64 Builder (dbg)', |
| + 'parent_mastername': 'chromium.android', |
| + 'bot_type': 'tester', |
| + 'android_config': 'arm64_builder_mb', |
| + 'test_results_config': 'public_server', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| + |
| + 'Lollipop Low-end Tester': { |
| + 'chromium_config': 'android', |
| + 'gclient_config': 'chromium', |
| + 'gclient_apply_config': ['android'], |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + }, |
| + 'parent_buildername': 'Android arm Builder (dbg)', |
| + 'bot_type': 'tester', |
| + 'android_config': 'main_builder_mb', |
| + 'test_results_config': 'public_server', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| + }, |
| +} |