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