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 from infra.libs.infra_types import freeze | 5 from recipe_engine.types import freeze |
iannucci
2015/09/15 00:10:48
it occurs to me that 'freeze' isn't really a type.
luqui
2015/09/15 19:17:42
Acknowledged.
| |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'bot_update', | 8 'bot_update', |
9 'chromium', | 9 'chromium', |
10 'chromium_tests', | 10 'chromium_tests', |
11 'gclient', | 11 'gclient', |
12 'gpu', | 12 'gpu', |
13 'isolate', | 13 'isolate', |
14 'json', | 14 'json', |
15 'path', | 15 'path', |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
273 api.override_step_data(with_patch, canned_test(passing=True)) | 273 api.override_step_data(with_patch, canned_test(passing=True)) |
274 ) | 274 ) |
275 | 275 |
276 yield ( | 276 yield ( |
277 api.test('use_v8_patch_on_blink_trybot') + | 277 api.test('use_v8_patch_on_blink_trybot') + |
278 properties(buildername='v8_linux_layout_dbg', | 278 properties(buildername='v8_linux_layout_dbg', |
279 mastername='tryserver.v8', | 279 mastername='tryserver.v8', |
280 patch_project='v8') + | 280 patch_project='v8') + |
281 api.platform.name('mac') | 281 api.platform.name('mac') |
282 ) | 282 ) |
OLD | NEW |