| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 DEPS = [ | 5 DEPS = [ |
| 6 'archive', | 6 'archive', |
| 7 'commit_position', | 7 'commit_position', |
| 8 'depot_tools/bot_update', | 8 'depot_tools/bot_update', |
| 9 'depot_tools/gclient', | 9 'depot_tools/gclient', |
| 10 'depot_tools/tryserver', | 10 'depot_tools/tryserver', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 ) | 60 ) |
| 61 | 61 |
| 62 yield ( | 62 yield ( |
| 63 api.test('build_failure') + | 63 api.test('build_failure') + |
| 64 api.properties.generic(mastername='client.webrtc.fyi', | 64 api.properties.generic(mastername='client.webrtc.fyi', |
| 65 buildername='iOS API Framework Builder') + | 65 buildername='iOS API Framework Builder') + |
| 66 api.step_data('build', retcode=1) | 66 api.step_data('build', retcode=1) |
| 67 ) | 67 ) |
| 68 | 68 |
| 69 yield ( | 69 yield ( |
| 70 api.test('trybot_biuld') + | 70 api.test('trybot_build') + |
| 71 api.properties.tryserver(mastername='tryserver.webrtc', | 71 api.properties.tryserver(mastername='tryserver.webrtc', |
| 72 buildername='ios_api_framework') | 72 buildername='ios_api_framework') |
| 73 ) | 73 ) |
| OLD | NEW |