| 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 'core', | 10 'core', |
| 11 'recipe_engine/json', | 11 'recipe_engine/json', |
| 12 'recipe_engine/path', | 12 'recipe_engine/path', |
| 13 'recipe_engine/platform', | 13 'recipe_engine/platform', |
| 14 'recipe_engine/properties', | 14 'recipe_engine/properties', |
| 15 'recipe_engine/python', | 15 'recipe_engine/python', |
| 16 'flavor', | 16 'flavor', |
| 17 'run', | 17 'run', |
| 18 'vars', | 18 'vars', |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 | 21 |
| 22 TEST_BUILDERS = { | 22 TEST_BUILDERS = { |
| 23 'client.skia.compile': { | 23 'client.skia.compile': { |
| 24 'skiabot-linux-swarm-000': [ | 24 'skiabot-linux-swarm-000': [ |
| 25 'Build-Mac-Clang-Arm7-Debug-Android', | 25 'Build-Mac-Clang-Arm7-Debug-Android', |
| 26 'Build-Mac-Clang-Arm7-Release-iOS', | 26 'Build-Mac-Clang-Arm7-Release-iOS', |
| 27 'Build-Mac-Clang-mipsel-Debug-GN_Android', | 27 'Build-Mac-Clang-mipsel-Debug-GN_Android', |
| 28 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', | 28 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', |
| 29 'Build-Mac-Clang-x86_64-Release-CMake', | 29 'Build-Mac-Clang-x86_64-Release-CMake', |
| 30 'Build-Mac-Clang-x86_64-Release-GN', |
| 30 'Build-Ubuntu-Clang-arm64-Release-GN_Android', | 31 'Build-Ubuntu-Clang-arm64-Release-GN_Android', |
| 31 'Build-Ubuntu-Clang-x86_64-Debug-GN', | 32 'Build-Ubuntu-Clang-x86_64-Debug-GN', |
| 32 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', | 33 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', |
| 33 'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs', | 34 'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs', |
| 34 'Build-Ubuntu-GCC-Arm7-Debug-Android_NoNeon', | 35 'Build-Ubuntu-GCC-Arm7-Debug-Android_NoNeon', |
| 35 'Build-Ubuntu-GCC-Arm7-Release-Android', | 36 'Build-Ubuntu-GCC-Arm7-Release-Android', |
| 36 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', | 37 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', |
| 37 'Build-Ubuntu-GCC-x86-Debug', | 38 'Build-Ubuntu-GCC-x86-Debug', |
| 38 'Build-Ubuntu-GCC-x86_64-Debug-GN', | 39 'Build-Ubuntu-GCC-x86_64-Debug-GN', |
| 39 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', | 40 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 buildername=buildername + '-Trybot', | 325 buildername=buildername + '-Trybot', |
| 325 mastername=mastername, | 326 mastername=mastername, |
| 326 slavename=slavename, | 327 slavename=slavename, |
| 327 buildnumber=5, | 328 buildnumber=5, |
| 328 path_config='kitchen', | 329 path_config='kitchen', |
| 329 swarm_out_dir='[SWARM_OUT_DIR]', | 330 swarm_out_dir='[SWARM_OUT_DIR]', |
| 330 revision='abc123', | 331 revision='abc123', |
| 331 **gerrit_kwargs) + | 332 **gerrit_kwargs) + |
| 332 api.platform('win', 64) | 333 api.platform('win', 64) |
| 333 ) | 334 ) |
| OLD | NEW |