| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 module for Skia Swarming compile. | 6 # Recipe module for Skia Swarming compile. |
| 7 | 7 |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'recipe_engine/json', | 10 'recipe_engine/json', |
| 11 'recipe_engine/path', | 11 'recipe_engine/path', |
| 12 'recipe_engine/platform', | 12 'recipe_engine/platform', |
| 13 'recipe_engine/properties', | 13 'recipe_engine/properties', |
| 14 'skia', | 14 'skia', |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 | 17 |
| 18 TEST_BUILDERS = { | 18 TEST_BUILDERS = { |
| 19 'client.skia.compile': { | 19 'client.skia.compile': { |
| 20 'skiabot-linux-compile-000': [ | 20 'skiabot-linux-compile-000': [ |
| 21 'Build-Mac-Clang-Arm7-Release-iOS', |
| 21 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', | 22 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', |
| 22 'Build-Ubuntu-GCC-Arm7-Release-Android', | 23 'Build-Ubuntu-GCC-Arm7-Release-Android', |
| 23 ], | 24 ], |
| 24 'skiabot-win-compile-000': [ | 25 'skiabot-win-compile-000': [ |
| 25 'Build-Win-MSVC-x86-Debug-VS2015', | 26 'Build-Win-MSVC-x86-Debug-VS2015', |
| 26 ], | 27 ], |
| 27 }, | 28 }, |
| 28 } | 29 } |
| 29 | 30 |
| 30 | 31 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 57 if 'Android' in builder: | 58 if 'Android' in builder: |
| 58 ccache = '/usr/bin/ccache' if 'Appurify' in builder else None | 59 ccache = '/usr/bin/ccache' if 'Appurify' in builder else None |
| 59 test += api.step_data('has ccache?', | 60 test += api.step_data('has ccache?', |
| 60 stdout=api.json.output({'ccache':ccache})) | 61 stdout=api.json.output({'ccache':ccache})) |
| 61 if 'Trybot' in builder: | 62 if 'Trybot' in builder: |
| 62 test += api.properties(issue=500, | 63 test += api.properties(issue=500, |
| 63 patchset=1, | 64 patchset=1, |
| 64 rietveld='https://codereview.chromium.org') | 65 rietveld='https://codereview.chromium.org') |
| 65 | 66 |
| 66 yield test | 67 yield test |
| OLD | NEW |