| 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', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 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-Mac-Clang-x86_64-Release-GN', |
| 31 'Build-Ubuntu-Clang-arm64-Release-GN_Android', | 31 'Build-Ubuntu-Clang-arm64-Release-GN_Android', |
| 32 'Build-Ubuntu-Clang-arm64-Release-GN_Android_Vulkan', |
| 32 'Build-Ubuntu-Clang-x86_64-Debug-ASAN', | 33 'Build-Ubuntu-Clang-x86_64-Debug-ASAN', |
| 33 'Build-Ubuntu-Clang-x86_64-Debug-GN', | 34 'Build-Ubuntu-Clang-x86_64-Debug-GN', |
| 34 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', | 35 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', |
| 35 'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs', | 36 'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs', |
| 36 'Build-Ubuntu-GCC-Arm7-Debug-Android_NoNeon', | 37 'Build-Ubuntu-GCC-Arm7-Debug-Android_NoNeon', |
| 37 'Build-Ubuntu-GCC-Arm7-Release-Android', | 38 'Build-Ubuntu-GCC-Arm7-Release-Android', |
| 38 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', | 39 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', |
| 39 'Build-Ubuntu-GCC-x86-Debug', | 40 'Build-Ubuntu-GCC-x86-Debug', |
| 40 'Build-Ubuntu-GCC-x86_64-Debug-GN', | 41 'Build-Ubuntu-GCC-x86_64-Debug-GN', |
| 41 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', | 42 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 buildername=buildername + '-Trybot', | 323 buildername=buildername + '-Trybot', |
| 323 mastername=mastername, | 324 mastername=mastername, |
| 324 slavename=slavename, | 325 slavename=slavename, |
| 325 buildnumber=5, | 326 buildnumber=5, |
| 326 path_config='kitchen', | 327 path_config='kitchen', |
| 327 swarm_out_dir='[SWARM_OUT_DIR]', | 328 swarm_out_dir='[SWARM_OUT_DIR]', |
| 328 revision='abc123', | 329 revision='abc123', |
| 329 **gerrit_kwargs) + | 330 **gerrit_kwargs) + |
| 330 api.platform('win', 64) | 331 api.platform('win', 64) |
| 331 ) | 332 ) |
| OLD | NEW |