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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_android_fyi.py

Issue 2491033005: Recipe changes for chormium.android.fyi master (Closed)
Patch Set: Retrain Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_android.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ },
+ },
+ },
+}
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_android.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698