| OLD | NEW |
| 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 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-android-archive', | 9 'build_gs_bucket': 'chromium-android-archive', |
| 10 }, | 10 }, |
| 11 'builders': { | 11 'builders': { |
| 12 'Android arm Builder (dbg)': { | 12 'Android arm Builder (dbg)': { |
| 13 'chromium_config': 'android', | 13 'chromium_config': 'android', |
| 14 'gclient_config': 'chromium', | 14 'gclient_config': 'chromium', |
| 15 'gclient_apply_config': ['android'], | 15 'gclient_apply_config': ['android'], |
| 16 'chromium_config_kwargs': { | 16 'chromium_config_kwargs': { |
| 17 'BUILD_CONFIG': 'Debug', | 17 'BUILD_CONFIG': 'Debug', |
| 18 'TARGET_BITS': 32, | 18 'TARGET_BITS': 32, |
| 19 'TARGET_PLATFORM': 'android', | 19 'TARGET_PLATFORM': 'android', |
| 20 }, | 20 }, |
| 21 'android_config': 'main_builder', | 21 'android_config': 'main_builder', |
| 22 'compile_targets': [ |
| 23 'chromium_builder_tests' |
| 24 ], |
| 22 'bot_type': 'builder', | 25 'bot_type': 'builder', |
| 23 'testing': { | 26 'testing': { |
| 24 'platform': 'linux', | 27 'platform': 'linux', |
| 25 }, | 28 }, |
| 26 }, | 29 }, |
| 27 | 30 |
| 28 'Android arm64 Builder (dbg)': { | 31 'Android arm64 Builder (dbg)': { |
| 29 'chromium_config': 'android', | 32 'chromium_config': 'android', |
| 30 'gclient_config': 'chromium', | 33 'gclient_config': 'chromium', |
| 31 'gclient_apply_config': ['android'], | 34 'gclient_apply_config': ['android'], |
| 32 'chromium_config_kwargs': { | 35 'chromium_config_kwargs': { |
| 33 'BUILD_CONFIG': 'Debug', | 36 'BUILD_CONFIG': 'Debug', |
| 34 'TARGET_BITS': 64, | 37 'TARGET_BITS': 64, |
| 35 'TARGET_PLATFORM': 'android', | 38 'TARGET_PLATFORM': 'android', |
| 36 }, | 39 }, |
| 37 'android_config': 'main_builder', | 40 'android_config': 'main_builder', |
| 41 'compile_targets': [ |
| 42 'chromium_builder_tests' |
| 43 ], |
| 38 'bot_type': 'builder', | 44 'bot_type': 'builder', |
| 39 'testing': { | 45 'testing': { |
| 40 'platform': 'linux', | 46 'platform': 'linux', |
| 41 }, | 47 }, |
| 42 }, | 48 }, |
| 43 | 49 |
| 44 'Android Remoting Tests': { | 50 'Android Remoting Tests': { |
| 45 'chromium_config': 'android', | 51 'chromium_config': 'android', |
| 46 'gclient_config': 'chromium', | 52 'gclient_config': 'chromium', |
| 47 'gclient_apply_config': ['android'], | 53 'gclient_apply_config': ['android'], |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 steps.generate_gtest, | 116 steps.generate_gtest, |
| 111 steps.generate_script, | 117 steps.generate_script, |
| 112 steps.generate_isolated_script, | 118 steps.generate_isolated_script, |
| 113 ], | 119 ], |
| 114 'testing': { | 120 'testing': { |
| 115 'platform': 'linux', | 121 'platform': 'linux', |
| 116 }, | 122 }, |
| 117 }, | 123 }, |
| 118 }, | 124 }, |
| 119 } | 125 } |
| OLD | NEW |