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/platform', |
| 9 ] |
| 10 |
| 11 |
| 12 def RunSteps(api): |
| 13 api.step( |
| 14 'download_from_google_storage', |
| 15 [api.depot_tools.download_from_google_storage_path]) |
| 16 |
| 17 api.step('cros', [api.depot_tools.cros_path]) |
| 18 |
| 19 api.step( |
| 20 'gn_py_path', [api.depot_tools.gn_py_path]) |
| 21 |
| 22 api.step( |
| 23 'gsutil_py_path', [api.depot_tools.gsutil_py_path]) |
| 24 |
| 25 api.step( |
| 26 'ninja_path', [api.depot_tools.ninja_path]) |
| 27 |
| 28 |
| 29 |
| 30 def GenTests(api): |
| 31 yield api.test('basic') |
| 32 |
| 33 yield api.test('win') + api.platform('win', 32) |
OLD | NEW |