| 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 | 7 |
| 8 SPEC = { | 8 SPEC = { |
| 9 'settings': { | 9 'settings': { |
| 10 'build_gs_bucket': 'chromium-android-archive', | 10 'build_gs_bucket': 'chromium-android-archive', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 'TARGET_BITS': 64, | 37 'TARGET_BITS': 64, |
| 38 'TARGET_PLATFORM': 'android', | 38 'TARGET_PLATFORM': 'android', |
| 39 }, | 39 }, |
| 40 'android_config': 'main_builder_mb', | 40 'android_config': 'main_builder_mb', |
| 41 'bot_type': 'builder', | 41 'bot_type': 'builder', |
| 42 'testing': { | 42 'testing': { |
| 43 'platform': 'linux', | 43 'platform': 'linux', |
| 44 }, | 44 }, |
| 45 }, | 45 }, |
| 46 | 46 |
| 47 'Android Cronet Builder': { |
| 48 'chromium_config': 'android', |
| 49 'chromium_apply_config': ['chrome_with_codecs'], |
| 50 'gclient_config': 'chromium', |
| 51 'gclient_apply_config': ['android'], |
| 52 'chromium_config_kwargs': { |
| 53 'BUILD_CONFIG': 'Release', |
| 54 'TARGET_PLATFORM': 'android', |
| 55 }, |
| 56 'android_config': 'main_builder_rel_mb', |
| 57 'bot_type': 'builder', |
| 58 'testing': { |
| 59 'platform': 'linux', |
| 60 }, |
| 61 }, |
| 62 |
| 47 'Android MIPS Builder (dbg)': { | 63 'Android MIPS Builder (dbg)': { |
| 48 'chromium_config': 'android', | 64 'chromium_config': 'android', |
| 49 'chromium_apply_config': ['chrome_with_codecs'], | 65 'chromium_apply_config': ['chrome_with_codecs'], |
| 50 'gclient_config': 'chromium', | 66 'gclient_config': 'chromium', |
| 51 'gclient_apply_config': ['android'], | 67 'gclient_apply_config': ['android'], |
| 52 'chromium_config_kwargs': { | 68 'chromium_config_kwargs': { |
| 53 'BUILD_CONFIG': 'Debug', | 69 'BUILD_CONFIG': 'Debug', |
| 54 'TARGET_BITS': 32, | 70 'TARGET_BITS': 32, |
| 55 'TARGET_PLATFORM': 'android', | 71 'TARGET_PLATFORM': 'android', |
| 56 }, | 72 }, |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 steps.generate_script, | 436 steps.generate_script, |
| 421 steps.generate_isolated_script, | 437 steps.generate_isolated_script, |
| 422 steps.generate_junit_test, | 438 steps.generate_junit_test, |
| 423 ], | 439 ], |
| 424 'testing': { | 440 'testing': { |
| 425 'platform': 'linux', | 441 'platform': 'linux', |
| 426 }, | 442 }, |
| 427 }, | 443 }, |
| 428 }, | 444 }, |
| 429 } | 445 } |
| OLD | NEW |