Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: scripts/slave/recipes/android_webview_aosp_perf.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Roll to latest recipes-py Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 infra.libs.infra_types import freeze 9 from recipe_engine.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
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()
OLDNEW
« no previous file with comments | « scripts/slave/recipes/android/perf.py ('k') | scripts/slave/recipes/android_webview_shell_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698