OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 DEPS = [ | |
6 'depot_tools', | |
7 'recipe_engine/step', | |
8 'recipe_engine/path', | |
martiniss
2016/05/13 19:23:57
So it turns out I need to import this for this tes
| |
9 'recipe_engine/platform', | |
10 ] | |
11 | |
12 | |
13 def RunSteps(api): | |
14 api.step( | |
15 'download_from_google_storage', | |
16 ['ls', api.depot_tools.download_from_google_storage_path]) | |
17 | |
18 api.step('cros', ['ls', api.depot_tools.cros_path]) | |
19 | |
20 api.step( | |
21 'gn_py_path', ['ls', api.depot_tools.gn_py_path]) | |
22 | |
23 api.step( | |
24 'gsutil_py_path', ['ls', api.depot_tools.gsutil_py_path]) | |
25 | |
26 api.step( | |
27 'ninja_path', ['ls', api.depot_tools.ninja_path]) | |
28 | |
29 | |
30 | |
31 def GenTests(api): | |
32 yield api.test('basic') | |
33 | |
34 yield api.test('win') + api.platform('win', 32) | |
OLD | NEW |