| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 """Recipe to build windows depot_tools bootstrap zipfile.""" | 5 """Recipe to build windows depot_tools bootstrap zipfile.""" |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'recipe_engine/path', | 8 'recipe_engine/path', |
| 9 'recipe_engine/platform', | 9 'recipe_engine/platform', |
| 10 'recipe_engine/properties', | 10 'recipe_engine/properties', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 api.gsutil.upload(zip_out, 'chrome-infra', 'depot_tools.zip', | 54 api.gsutil.upload(zip_out, 'chrome-infra', 'depot_tools.zip', |
| 55 args=['-a', 'public-read'], unauthenticated_url=True) | 55 args=['-a', 'public-read'], unauthenticated_url=True) |
| 56 | 56 |
| 57 # upload html docs | 57 # upload html docs |
| 58 api.gsutil(['cp', '-r', '-z', 'html', '-a', 'public-read', | 58 api.gsutil(['cp', '-r', '-z', 'html', '-a', 'public-read', |
| 59 api.path['checkout'].join('man', 'html'), DOC_UPLOAD_URL], | 59 api.path['checkout'].join('man', 'html'), DOC_UPLOAD_URL], |
| 60 name='upload docs') | 60 name='upload docs') |
| 61 | 61 |
| 62 | 62 |
| 63 def GenTests(api): | 63 def GenTests(api): |
| 64 yield api.test('basic') + api.properties(revision='deadbeef') | 64 yield ( |
| 65 api.test('basic') + |
| 66 api.properties(path_config='kitchen', revision='deadbeef') |
| 67 ) |
| OLD | NEW |