| 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 'json', | 10 'json', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', | 46 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', |
| 47 ], | 47 ], |
| 48 }, | 48 }, |
| 49 'client.skia.compile': { | 49 'client.skia.compile': { |
| 50 'skiabot-mac-10_8-compile-001': [ | 50 'skiabot-mac-10_8-compile-001': [ |
| 51 'Build-Mac10.8-Clang-Arm7-Debug-Android', | 51 'Build-Mac10.8-Clang-Arm7-Debug-Android', |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 'client.skia.fyi': { | 54 'client.skia.fyi': { |
| 55 'skiabot-linux-housekeeper-003': [ | 55 'skiabot-linux-housekeeper-003': [ |
| 56 'Perf-Android-GCC-Nexus5-CPU-NEON-Arm7-Release-Appurify', |
| 56 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', | 57 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', |
| 57 ], | 58 ], |
| 58 }, | 59 }, |
| 59 } | 60 } |
| 60 | 61 |
| 61 def AndroidTestData(builder): | 62 def AndroidTestData(builder): |
| 62 test_data = ( | 63 test_data = ( |
| 63 api.step_data( | 64 api.step_data( |
| 64 'get EXTERNAL_STORAGE dir', | 65 'get EXTERNAL_STORAGE dir', |
| 65 stdout=api.raw_io.output('/storage/emulated/legacy')) + | 66 stdout=api.raw_io.output('/storage/emulated/legacy')) + |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 buildnumber=6, | 297 buildnumber=6, |
| 297 revision='abc123') + | 298 revision='abc123') + |
| 298 api.step_data('gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED', | 299 api.step_data('gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED', |
| 299 stdout=api.raw_io.output('42')) + | 300 stdout=api.raw_io.output('42')) + |
| 300 api.step_data('Get downloaded SKIMAGE_VERSION', retcode=1) + | 301 api.step_data('Get downloaded SKIMAGE_VERSION', retcode=1) + |
| 301 api.path.exists( | 302 api.path.exists( |
| 302 api.path['slave_build'].join('skia'), | 303 api.path['slave_build'].join('skia'), |
| 303 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 304 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 304 ) | 305 ) |
| 305 ) | 306 ) |
| OLD | NEW |