| 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 Performance testing for the WebView. | 6 Performance testing for the WebView. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 from recipe_engine.types import freeze | 9 from infra.libs.infra_types import freeze |
| 10 | 10 |
| 11 DEPS = [ | 11 DEPS = [ |
| 12 'adb', | 12 'adb', |
| 13 'bot_update', | 13 'bot_update', |
| 14 'chromium', | 14 'chromium', |
| 15 'chromium_android', | 15 'chromium_android', |
| 16 'gclient', | 16 'gclient', |
| 17 'json', | 17 'json', |
| 18 'path', | 18 'path', |
| 19 'properties', | 19 'properties', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 config=api.json.input(data=perf_tests), | 76 config=api.json.input(data=perf_tests), |
| 77 perf_id=BUILDER['perf_id']) | 77 perf_id=BUILDER['perf_id']) |
| 78 finally: | 78 finally: |
| 79 api.chromium_android.logcat_dump() | 79 api.chromium_android.logcat_dump() |
| 80 api.chromium_android.stack_tool_steps() | 80 api.chromium_android.stack_tool_steps() |
| 81 api.chromium_android.test_report() | 81 api.chromium_android.test_report() |
| 82 | 82 |
| 83 | 83 |
| 84 def GenTests(api): | 84 def GenTests(api): |
| 85 yield api.test('basic') + api.properties.scheduled() | 85 yield api.test('basic') + api.properties.scheduled() |
| OLD | NEW |