| 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..e5fe85b9cd05f40c4bf892e0bc72245aa7683fb5
|
| --- /dev/null
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py
|
| @@ -0,0 +1,66 @@
|
| +# 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',
|
| + },
|
| + },
|
| +
|
| + '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',
|
| + },
|
| + },
|
| + },
|
| +}
|
|
|