| 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 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
| 7 'depot_tools/gclient', | 7 'depot_tools/gclient', |
| 8 'depot_tools/infra_paths', | |
| 9 'ios', | 8 'ios', |
| 10 'recipe_engine/path', | 9 'recipe_engine/path', |
| 11 'recipe_engine/platform', | 10 'recipe_engine/platform', |
| 12 'recipe_engine/properties', | 11 'recipe_engine/properties', |
| 13 'webrtc' | 12 'webrtc' |
| 14 ] | 13 ] |
| 15 | 14 |
| 16 | 15 |
| 17 def RunSteps(api): | 16 def RunSteps(api): |
| 18 api.gclient.set_config('webrtc_ios') | 17 api.gclient.set_config('webrtc_ios') |
| 19 | 18 |
| 20 api.ios.host_info() | 19 api.ios.host_info() |
| 21 api.bot_update.ensure_checkout() | 20 api.bot_update.ensure_checkout() |
| 22 api.path['checkout'] = api.infra_paths['slave_build'].join('src') | 21 api.path['checkout'] = api.path['slave_build'].join('src') |
| 23 | 22 |
| 24 build_config_dir = api.path['checkout'].join( | 23 build_config_dir = api.path['checkout'].join( |
| 25 'webrtc', | 24 'webrtc', |
| 26 'build', | 25 'build', |
| 27 'ios', | 26 'ios', |
| 28 api.properties['mastername'], | 27 api.properties['mastername'], |
| 29 ) | 28 ) |
| 30 include_dir = api.path['checkout'].join( | 29 include_dir = api.path['checkout'].join( |
| 31 'webrtc', | 30 'webrtc', |
| 32 'build', | 31 'build', |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 'os': '7.1', | 222 'os': '7.1', |
| 224 }, | 223 }, |
| 225 ], | 224 ], |
| 226 }) | 225 }) |
| 227 + api.step_data( | 226 + api.step_data( |
| 228 'fake tests 1 (fake device iOS 8.0)', | 227 'fake tests 1 (fake device iOS 8.0)', |
| 229 retcode=2, | 228 retcode=2, |
| 230 ) | 229 ) |
| 231 ) | 230 ) |
| 232 | 231 |
| OLD | NEW |