| 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 for the Skia PerCommit Housekeeper. | 6 # Recipe for the Skia PerCommit Housekeeper. |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'core', | 9 'core', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 api.run( | 35 api.run( |
| 36 api.step, | 36 api.step, |
| 37 'android platform self-tests', | 37 'android platform self-tests', |
| 38 cmd=['python', | 38 cmd=['python', |
| 39 cwd.join('platform_tools', 'android', 'tests', 'run_all.py')], | 39 cwd.join('platform_tools', 'android', 'tests', 'run_all.py')], |
| 40 cwd=cwd, | 40 cwd=cwd, |
| 41 abort_on_failure=False) | 41 abort_on_failure=False) |
| 42 | 42 |
| 43 # TODO(borenet): Detect static initializers? | 43 # TODO(borenet): Detect static initializers? |
| 44 | 44 |
| 45 gsutil_path = api.path['depot_tools'].join('third_party', 'gsutil', | 45 gsutil_path = api.path['depot_tools'].join('gsutil.py') |
| 46 'gsutil') | |
| 47 if not api.vars.is_trybot: | 46 if not api.vars.is_trybot: |
| 48 api.run( | 47 api.run( |
| 49 api.step, | 48 api.step, |
| 50 'generate and upload doxygen', | 49 'generate and upload doxygen', |
| 51 cmd=['python', api.core.resource('generate_and_upload_doxygen.py'), | 50 cmd=['python', api.core.resource('generate_and_upload_doxygen.py'), |
| 52 gsutil_path], | 51 gsutil_path], |
| 53 cwd=cwd, | 52 cwd=cwd, |
| 54 abort_on_failure=False) | 53 abort_on_failure=False) |
| 55 | 54 |
| 56 cmd = ['python', api.core.resource('run_binary_size_analysis.py'), | 55 cmd = ['python', api.core.resource('run_binary_size_analysis.py'), |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 revision='abc123', | 103 revision='abc123', |
| 105 path_config='kitchen', | 104 path_config='kitchen', |
| 106 swarm_out_dir='[SWARM_OUT_DIR]') + | 105 swarm_out_dir='[SWARM_OUT_DIR]') + |
| 107 api.path.exists(api.path['slave_build']) | 106 api.path.exists(api.path['slave_build']) |
| 108 ) | 107 ) |
| 109 if 'Trybot' in buildername: | 108 if 'Trybot' in buildername: |
| 110 test.properties['issue'] = '500' | 109 test.properties['issue'] = '500' |
| 111 test.properties['patchset'] = '1' | 110 test.properties['patchset'] = '1' |
| 112 test.properties['rietveld'] = 'https://codereview.chromium.org' | 111 test.properties['rietveld'] = 'https://codereview.chromium.org' |
| 113 yield test | 112 yield test |
| OLD | NEW |