OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 """ | 5 """ |
6 Recipe for building and running tests for Libyuv stand-alone. | 6 Recipe for building and running tests for Libyuv stand-alone. |
7 """ | 7 """ |
8 | 8 |
9 from recipe_engine.types import freeze | 9 from infra.libs.infra_types import freeze |
10 | 10 |
11 DEPS = [ | 11 DEPS = [ |
12 'bot_update', | 12 'bot_update', |
13 'chromium', | 13 'chromium', |
14 'gclient', | 14 'gclient', |
15 'libyuv', | 15 'libyuv', |
16 'path', | 16 'path', |
17 'platform', | 17 'platform', |
18 'properties', | 18 'properties', |
19 'step', | 19 'step', |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 | 674 |
675 # Forced builds (not specifying any revision) and test failures. | 675 # Forced builds (not specifying any revision) and test failures. |
676 mastername = 'client.libyuv' | 676 mastername = 'client.libyuv' |
677 yield generate_builder(mastername, 'Linux64 Debug', revision=None, | 677 yield generate_builder(mastername, 'Linux64 Debug', revision=None, |
678 suffix='_forced') | 678 suffix='_forced') |
679 yield generate_builder(mastername, 'Android Debug', revision=None, | 679 yield generate_builder(mastername, 'Android Debug', revision=None, |
680 suffix='_forced') | 680 suffix='_forced') |
681 | 681 |
682 yield generate_builder('tryserver.libyuv', 'linux', revision=None, | 682 yield generate_builder('tryserver.libyuv', 'linux', revision=None, |
683 suffix='_forced') | 683 suffix='_forced') |
OLD | NEW |