OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 DEPS = [ |
| 6 'depot_tools/cipd', |
| 7 'gae_sdk', |
| 8 'recipe_engine/path', |
| 9 'recipe_engine/platform', |
| 10 ] |
| 11 |
| 12 |
| 13 def RunSteps(api): |
| 14 api.cipd.install_client() |
| 15 |
| 16 for plat in api.gae_sdk.platforms: |
| 17 out = api.path['build'].join('gae_sdk', '%s_%s' % (plat, api.platform.name)) |
| 18 try: |
| 19 api.gae_sdk.fetch(plat, out) |
| 20 except api.gae_sdk.PackageNotFound as e: |
| 21 pass |
| 22 |
| 23 |
| 24 def GenTests(api): |
| 25 yield ( |
| 26 api.test('win') + |
| 27 api.platform('win', 64)) |
| 28 |
| 29 yield ( |
| 30 api.test('linux') + |
| 31 api.platform('linux', 64)) |
| 32 |
| 33 yield ( |
| 34 api.test('mac') + |
| 35 api.platform('mac', 64)) |
OLD | NEW |