OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 builders. | 6 # Recipe module for Skia builders. |
7 | 7 |
8 | 8 |
9 DEPS = [ | 9 DEPS = [ |
10 'recipe_engine/json', | 10 'recipe_engine/json', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'skiabot-win-compile-000': [ | 55 'skiabot-win-compile-000': [ |
56 'Build-Win-MSVC-x86-Debug', | 56 'Build-Win-MSVC-x86-Debug', |
57 ], | 57 ], |
58 }, | 58 }, |
59 'client.skia.fyi': { | 59 'client.skia.fyi': { |
60 'skiabot-linux-housekeeper-003': [ | 60 'skiabot-linux-housekeeper-003': [ |
61 'Housekeeper-PerCommit', | 61 'Housekeeper-PerCommit', |
62 'Housekeeper-PerCommit-Trybot', | 62 'Housekeeper-PerCommit-Trybot', |
63 'Perf-Android-GCC-Nexus5-CPU-NEON-Arm7-Release-Appurify', | 63 'Perf-Android-GCC-Nexus5-CPU-NEON-Arm7-Release-Appurify', |
64 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', | 64 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', |
| 65 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SwarmingMSAN', |
65 ], | 66 ], |
66 }, | 67 }, |
67 } | 68 } |
68 | 69 |
69 | 70 |
70 def RunSteps(api): | 71 def RunSteps(api): |
71 api.skia.gen_steps() | 72 api.skia.gen_steps() |
72 | 73 |
73 | 74 |
74 def GenTests(api): | 75 def GenTests(api): |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 AndroidTestData(builder, adb='/usr/bin/adb') + | 341 AndroidTestData(builder, adb='/usr/bin/adb') + |
341 api.step_data('read SKP_VERSION', | 342 api.step_data('read SKP_VERSION', |
342 stdout=api.raw_io.output('42')) + | 343 stdout=api.raw_io.output('42')) + |
343 api.step_data('read SK_IMAGE_VERSION', | 344 api.step_data('read SK_IMAGE_VERSION', |
344 stdout=api.raw_io.output('42')) + | 345 stdout=api.raw_io.output('42')) + |
345 api.path.exists( | 346 api.path.exists( |
346 api.path['slave_build'].join('skia'), | 347 api.path['slave_build'].join('skia'), |
347 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 348 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
348 ) | 349 ) |
349 ) | 350 ) |
350 | |
OLD | NEW |