| 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 # Recipe for building and running tests for WebRTC stand-alone. | 5 # Recipe for building and running tests for WebRTC stand-alone. |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'archive', | 8 'archive', |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'chromium', | 10 'chromium', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 | 22 |
| 23 def RunSteps(api): | 23 def RunSteps(api): |
| 24 webrtc = api.webrtc | 24 webrtc = api.webrtc |
| 25 webrtc.apply_bot_config(webrtc.BUILDERS, webrtc.RECIPE_CONFIGS) | 25 webrtc.apply_bot_config(webrtc.BUILDERS, webrtc.RECIPE_CONFIGS) |
| 26 | 26 |
| 27 if api.properties['buildername'] == 'Win64 Debug (Clang)': | 27 if api.properties['buildername'] == 'Win64 Debug (Clang)': |
| 28 step_result = api.step('Disabled: see http://crbug.com/595702', cmd=None) | 28 step_result = api.step('Disabled: see http://crbug.com/595702', cmd=None) |
| 29 step_result.presentation.status = api.step.WARNING | 29 step_result.presentation.status = api.step.WARNING |
| 30 return | 30 return |
| 31 if api.properties['buildername'] == 'Android32 Builder x86 (dbg)': |
| 32 step_result = api.step('Disabled: see http://crbug.com/610145 ', cmd=None) |
| 33 step_result.presentation.status = api.step.WARNING |
| 34 return |
| 31 | 35 |
| 32 if api.platform.is_mac: | 36 if api.platform.is_mac: |
| 33 api.ios.host_info() | 37 api.ios.host_info() |
| 34 webrtc.checkout() | 38 webrtc.checkout() |
| 35 webrtc.cleanup() | 39 webrtc.cleanup() |
| 36 api.chromium.runhooks() | 40 api.chromium.runhooks() |
| 37 webrtc.check_swarming_version() | 41 webrtc.check_swarming_version() |
| 38 | 42 |
| 39 if webrtc.should_build: | 43 if webrtc.should_build: |
| 40 if api.chromium.c.project_generator.tool == 'gn': | 44 if api.chromium.c.project_generator.tool == 'gn': |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 parent_got_revision='12345', suffix='_forced') | 134 parent_got_revision='12345', suffix='_forced') |
| 131 yield generate_builder(mastername, buildername, revision=None, | 135 yield generate_builder(mastername, buildername, revision=None, |
| 132 suffix='_forced_invalid') | 136 suffix='_forced_invalid') |
| 133 yield generate_builder(mastername, buildername, revision='12345', | 137 yield generate_builder(mastername, buildername, revision='12345', |
| 134 failing_test='tools_unittests', suffix='_failing_test') | 138 failing_test='tools_unittests', suffix='_failing_test') |
| 135 | 139 |
| 136 # Legacy trybot (SVN-based). | 140 # Legacy trybot (SVN-based). |
| 137 mastername = 'tryserver.webrtc' | 141 mastername = 'tryserver.webrtc' |
| 138 yield generate_builder(mastername, 'linux_dbg', revision='12345', | 142 yield generate_builder(mastername, 'linux_dbg', revision='12345', |
| 139 legacy_trybot=True, suffix='_legacy_svn_patch') | 143 legacy_trybot=True, suffix='_legacy_svn_patch') |
| OLD | NEW |