| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 from recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'auto_bisect', | 8 'auto_bisect', |
| 9 'bisect_tester', | 9 'bisect_tester', |
| 10 'depot_tools/bot_update', | 10 'depot_tools/bot_update', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'android_s5_perf_cq': { | 62 'android_s5_perf_cq': { |
| 63 'recipe_config': 'main_builder_rel_mb', | 63 'recipe_config': 'main_builder_rel_mb', |
| 64 'gclient_apply_config': ['android', 'perf'], | 64 'gclient_apply_config': ['android', 'perf'], |
| 65 'bucket': 'chrome-perf', | 65 'bucket': 'chrome-perf', |
| 66 }, | 66 }, |
| 67 'android_fyi_perf_bisect': { | 67 'android_fyi_perf_bisect': { |
| 68 'recipe_config': 'main_builder_rel_mb', | 68 'recipe_config': 'main_builder_rel_mb', |
| 69 'gclient_apply_config': ['android', 'perf'], | 69 'gclient_apply_config': ['android', 'perf'], |
| 70 'bucket': 'chrome-perf', | 70 'bucket': 'chrome-perf', |
| 71 }, | 71 }, |
| 72 'android_webview_aosp_perf_bisect': { | 72 'android_webview_arm64_aosp_perf_bisect': { |
| 73 'recipe_config': 'main_builder_rel_mb', | 73 'recipe_config': 'main_builder_rel_mb', |
| 74 'gclient_apply_config': ['android', 'perf'], | 74 'gclient_apply_config': ['android', 'perf'], |
| 75 'bucket': 'chrome-perf', | 75 'bucket': 'chrome-perf', |
| 76 'webview': True, | 76 'webview': True, |
| 77 }, | 77 }, |
| 78 }, | 78 }, |
| 79 }, | 79 }, |
| 80 }) | 80 }) |
| 81 | 81 |
| 82 from recipe_engine.recipe_api import Property | 82 from recipe_engine.recipe_api import Property |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 buildername=buildername) + api.step_data( | 273 buildername=buildername) + api.step_data( |
| 274 'saving url to temp file', | 274 'saving url to temp file', |
| 275 stdout=api.raw_io.output('/tmp/dummy1')) + api.step_data( | 275 stdout=api.raw_io.output('/tmp/dummy1')) + api.step_data( |
| 276 'saving json to temp file', | 276 'saving json to temp file', |
| 277 stdout=api.raw_io.output('/tmp/dummy2')) + api.properties( | 277 stdout=api.raw_io.output('/tmp/dummy2')) + api.properties( |
| 278 bisect_config=bisect_config) + api.properties( | 278 bisect_config=bisect_config) + api.properties( |
| 279 job_name='f7a7b4135624439cbd27fdd5133d74ec') + | 279 job_name='f7a7b4135624439cbd27fdd5133d74ec') + |
| 280 api.bisect_tester(tempfile='/tmp/dummy') + | 280 api.bisect_tester(tempfile='/tmp/dummy') + |
| 281 api.properties(parent_got_revision='1111111') + api.properties( | 281 api.properties(parent_got_revision='1111111') + api.properties( |
| 282 parent_build_archive_url='gs://test-domain/test-archive.zip')) | 282 parent_build_archive_url='gs://test-domain/test-archive.zip')) |
| OLD | NEW |