| 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 'sync_submodules', |
| 7 'recipe_engine/properties', |
| 8 ] |
| 9 |
| 10 |
| 11 DEFAULT_SOURCE_REPO = 'https://chromium.googlesource.com/chromium/src' |
| 12 |
| 13 |
| 14 def RunSteps(api): |
| 15 source_repo = api.properties.get('source_repo', DEFAULT_SOURCE_REPO) |
| 16 dest_repo = api.properties.get('dest_repo', source_repo + '/codesearch') |
| 17 |
| 18 api.sync_submodules(source_repo, dest_repo) |
| 19 |
| 20 |
| 21 def GenTests(api): |
| 22 yield api.test('basic') |
| OLD | NEW |