| 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 'recipe_engine/platform', |
| 9 ] | 10 ] |
| 10 | 11 |
| 11 | 12 |
| 12 TEST_CONFIGS = [ | 13 TEST_CONFIGS = [ |
| 13 'android', | 14 'android', |
| 14 'android_bare', | 15 'android_bare', |
| 15 'blink', | 16 'blink', |
| 16 'blink_or_chromium', | 17 'blink_or_chromium', |
| 17 'boringssl', | 18 'boringssl', |
| 18 'build_internal', | 19 'build_internal', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 86 |
| 86 api.gclient.break_locks() | 87 api.gclient.break_locks() |
| 87 | 88 |
| 88 del api.gclient.spec_alias | 89 del api.gclient.spec_alias |
| 89 | 90 |
| 90 api.gclient.runhooks() | 91 api.gclient.runhooks() |
| 91 | 92 |
| 92 assert not api.gclient.is_blink_mode | 93 assert not api.gclient.is_blink_mode |
| 93 | 94 |
| 94 | 95 |
| 96 |
| 95 def GenTests(api): | 97 def GenTests(api): |
| 96 yield api.test('basic') | 98 yield api.test('basic') |
| 97 | 99 |
| 98 yield api.test('revision') + api.properties(revision='abc') | 100 yield api.test('revision') + api.properties(revision='abc') |
| 99 | 101 |
| 100 yield api.test('tryserver') + api.properties.tryserver() | 102 yield api.test('tryserver') + api.properties.tryserver() |
| OLD | NEW |