| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 DEPS = [ | 5 DEPS = [ |
| 6 'gclient', | 6 'gclient', |
| 7 'recipe_engine/path', | 7 'recipe_engine/path', |
| 8 'recipe_engine/properties', | 8 'recipe_engine/properties', |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'dart', | 30 'dart', |
| 31 'gerrit_test_cq_normal', | 31 'gerrit_test_cq_normal', |
| 32 'gyp', | 32 'gyp', |
| 33 'infra', | 33 'infra', |
| 34 'infradata_master_manager', | 34 'infradata_master_manager', |
| 35 'internal_deps', | 35 'internal_deps', |
| 36 'ios', | 36 'ios', |
| 37 'luci_gae', | 37 'luci_gae', |
| 38 'luci_go', | 38 'luci_go', |
| 39 'luci_py', | 39 'luci_py', |
| 40 'master_deps', |
| 40 'mojo', | 41 'mojo', |
| 41 'nacl', | 42 'nacl', |
| 42 'pdfium', | 43 'pdfium', |
| 43 'perf', | 44 'perf', |
| 44 'recipes_py', | 45 'recipes_py', |
| 45 'show_v8_revision', | 46 'show_v8_revision', |
| 46 'slave_deps', | 47 'slave_deps', |
| 47 'v8_bleeding_edge_git', | 48 'v8_bleeding_edge_git', |
| 48 'v8_canary', | 49 'v8_canary', |
| 49 'wasm_llvm', | 50 'wasm_llvm', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 91 |
| 91 assert not api.gclient.is_blink_mode | 92 assert not api.gclient.is_blink_mode |
| 92 | 93 |
| 93 | 94 |
| 94 def GenTests(api): | 95 def GenTests(api): |
| 95 yield api.test('basic') | 96 yield api.test('basic') |
| 96 | 97 |
| 97 yield api.test('revision') + api.properties(revision='abc') | 98 yield api.test('revision') + api.properties(revision='abc') |
| 98 | 99 |
| 99 yield api.test('tryserver') + api.properties.tryserver() | 100 yield api.test('tryserver') + api.properties.tryserver() |
| OLD | NEW |