| 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 perf. | 6 # Recipe module for Skia Swarming perf. |
| 7 | 7 |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'build/file', | 10 'build/file', |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 api.step_data( | 245 api.step_data( |
| 246 'get EXTERNAL_STORAGE dir', | 246 'get EXTERNAL_STORAGE dir', |
| 247 stdout=api.raw_io.output('/storage/emulated/legacy')) + | 247 stdout=api.raw_io.output('/storage/emulated/legacy')) + |
| 248 api.step_data( | 248 api.step_data( |
| 249 'read SKP_VERSION', | 249 'read SKP_VERSION', |
| 250 stdout=api.raw_io.output('42')) + | 250 stdout=api.raw_io.output('42')) + |
| 251 api.step_data( | 251 api.step_data( |
| 252 'read SK_IMAGE_VERSION', | 252 'read SK_IMAGE_VERSION', |
| 253 stdout=api.raw_io.output('42')) + | 253 stdout=api.raw_io.output('42')) + |
| 254 api.step_data( | 254 api.step_data( |
| 255 'read SVG_VERSION', |
| 256 stdout=api.raw_io.output('42')) + |
| 257 api.step_data( |
| 255 'which adb', | 258 'which adb', |
| 256 retcode=1) | 259 retcode=1) |
| 257 ) | 260 ) |
| 258 if not 'Debug' in builder: | 261 if not 'Debug' in builder: |
| 259 test_data += api.step_data( | 262 test_data += api.step_data( |
| 260 'exists skia_perf', | 263 'exists skia_perf', |
| 261 stdout=api.raw_io.output('')) | 264 stdout=api.raw_io.output('')) |
| 262 if not 'GalaxyS3' in builder: | 265 if not 'GalaxyS3' in builder: |
| 263 test_data += api.step_data( | 266 test_data += api.step_data( |
| 264 'adb root', | 267 'adb root', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 swarm_out_dir='[SWARM_OUT_DIR]', | 314 swarm_out_dir='[SWARM_OUT_DIR]', |
| 312 rietveld='https://codereview.chromium.org', | 315 rietveld='https://codereview.chromium.org', |
| 313 patchset=1, | 316 patchset=1, |
| 314 issue=2147533002L) + | 317 issue=2147533002L) + |
| 315 api.path.exists( | 318 api.path.exists( |
| 316 api.path['slave_build'].join('skia'), | 319 api.path['slave_build'].join('skia'), |
| 317 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 320 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 318 'skimage', 'VERSION'), | 321 'skimage', 'VERSION'), |
| 319 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 322 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 320 'skp', 'VERSION'), | 323 'skp', 'VERSION'), |
| 324 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 325 'svg', 'VERSION'), |
| 321 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 326 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 322 ) + | 327 ) + |
| 323 api.platform('win', 64) | 328 api.platform('win', 64) |
| 324 ) | 329 ) |
| OLD | NEW |