| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from . import steps |
| 6 |
| 7 |
| 8 SPEC = { |
| 9 'settings': { |
| 10 'build_gs_bucket': 'chromium-android-archive', |
| 11 }, |
| 12 'builders': { |
| 13 'Jelly Bean Tester': { |
| 14 'chromium_config': 'android', |
| 15 'gclient_config': 'chromium', |
| 16 'gclient_apply_config': ['android'], |
| 17 'chromium_config_kwargs': { |
| 18 'BUILD_CONFIG': 'Debug', |
| 19 'TARGET_PLATFORM': 'android', |
| 20 }, |
| 21 'parent_buildername': 'Android arm Builder (dbg)', |
| 22 'parent_mastername': 'chromium.android', |
| 23 'bot_type': 'tester', |
| 24 'android_config': 'main_builder_mb', |
| 25 'test_results_config': 'public_server', |
| 26 'testing': { |
| 27 'platform': 'linux', |
| 28 }, |
| 29 }, |
| 30 |
| 31 'Lollipop Consumer Tester': { |
| 32 'chromium_config': 'android', |
| 33 'gclient_config': 'chromium', |
| 34 'gclient_apply_config': ['android'], |
| 35 'chromium_config_kwargs': { |
| 36 'BUILD_CONFIG': 'Debug', |
| 37 'TARGET_PLATFORM': 'android', |
| 38 }, |
| 39 'parent_buildername': 'Android arm64 Builder (dbg)', |
| 40 'parent_mastername': 'chromium.android', |
| 41 'bot_type': 'tester', |
| 42 'android_config': 'arm64_builder_mb', |
| 43 'test_results_config': 'public_server', |
| 44 'testing': { |
| 45 'platform': 'linux', |
| 46 }, |
| 47 }, |
| 48 |
| 49 'Lollipop Low-end Tester': { |
| 50 'chromium_config': 'android', |
| 51 'gclient_config': 'chromium', |
| 52 'gclient_apply_config': ['android'], |
| 53 'chromium_config_kwargs': { |
| 54 'BUILD_CONFIG': 'Debug', |
| 55 'TARGET_PLATFORM': 'android', |
| 56 }, |
| 57 'parent_buildername': 'Android arm Builder (dbg)', |
| 58 'bot_type': 'tester', |
| 59 'android_config': 'main_builder_mb', |
| 60 'test_results_config': 'public_server', |
| 61 'testing': { |
| 62 'platform': 'linux', |
| 63 }, |
| 64 }, |
| 65 }, |
| 66 } |
| OLD | NEW |