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