| 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-swarm-000': [ | 20 'skiabot-linux-swarm-000': [ |
| 21 'Build-Mac-Clang-Arm7-Debug-Android', | 21 'Build-Mac-Clang-Arm7-Debug-Android', |
| 22 'Build-Mac-Clang-Arm7-Release-iOS', | 22 'Build-Mac-Clang-Arm7-Release-iOS', |
| 23 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', | 23 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', |
| 24 'Build-Mac-Clang-x86_64-Release-CMake', | 24 'Build-Mac-Clang-x86_64-Release-CMake', |
| 25 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', | 25 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', |
| 26 'Build-Ubuntu-GCC-Arm7-Release-Android', | 26 'Build-Ubuntu-GCC-Arm7-Release-Android', |
| 27 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', | 27 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', |
| 28 'Build-Ubuntu-GCC-x86-Debug', | 28 'Build-Ubuntu-GCC-x86-Debug', |
| 29 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', | 29 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', |
| 30 'Build-Ubuntu-GCC-x86_64-Debug-GN', |
| 30 'Build-Ubuntu-GCC-x86_64-Release-CMake', | 31 'Build-Ubuntu-GCC-x86_64-Release-CMake', |
| 31 'Build-Ubuntu-GCC-x86_64-Release-PDFium', | 32 'Build-Ubuntu-GCC-x86_64-Release-PDFium', |
| 32 'Build-Ubuntu-GCC-x86_64-Release-Shared', | 33 'Build-Ubuntu-GCC-x86_64-Release-Shared', |
| 33 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', | 34 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', |
| 34 'Build-Win-MSVC-x86-Debug', | 35 'Build-Win-MSVC-x86-Debug', |
| 36 'Build-Win-MSVC-x86-Release-GN', |
| 35 'Build-Win-MSVC-x86_64-Release-Vulkan', | 37 'Build-Win-MSVC-x86_64-Release-Vulkan', |
| 36 ], | 38 ], |
| 37 }, | 39 }, |
| 38 } | 40 } |
| 39 | 41 |
| 40 | 42 |
| 41 def RunSteps(api): | 43 def RunSteps(api): |
| 42 api.skia.setup() | 44 api.skia.setup() |
| 43 api.skia.compile_steps() | 45 api.skia.compile_steps() |
| 44 api.skia.cleanup_steps() | 46 api.skia.cleanup_steps() |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 path_config='kitchen', | 129 path_config='kitchen', |
| 128 swarm_out_dir='[SWARM_OUT_DIR]', | 130 swarm_out_dir='[SWARM_OUT_DIR]', |
| 129 rietveld='https://codereview.chromium.org', | 131 rietveld='https://codereview.chromium.org', |
| 130 patchset=1, | 132 patchset=1, |
| 131 issue=2147533002L) + | 133 issue=2147533002L) + |
| 132 api.path.exists( | 134 api.path.exists( |
| 133 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 135 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 134 ) + | 136 ) + |
| 135 api.platform('win', 64) | 137 api.platform('win', 64) |
| 136 ) | 138 ) |
| OLD | NEW |