| 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 """A recipe that just checks out chromium, for canarying src-side recipes.""" | 5 """A recipe that just checks out chromium, for canarying src-side recipes.""" |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'recipe_engine/properties', | 8 'recipe_engine/properties', |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'depot_tools/gclient', | 10 'depot_tools/gclient', |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 def RunSteps(api): | 13 def RunSteps(api): |
| 14 api.gclient.set_config('chromium', GIT_MODE=True) | 14 api.gclient.set_config('chromium') |
| 15 api.bot_update.ensure_checkout(force=True) | 15 api.bot_update.ensure_checkout(force=True) |
| 16 | 16 |
| 17 def GenTests(api): | 17 def GenTests(api): |
| 18 yield api.test('basic') + api.properties.generic() | 18 yield api.test('basic') + api.properties.generic() |
| OLD | NEW |