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

Side by Side Diff: tools/cr/cr/targets/chrome_shell.py

Issue 302653004: Cleanup: Remove the remaining instances of ChromiumTestShell from Telemetry scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rework! Created 6 years, 6 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
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 """Module for the chrome_shell targets.""" 5 """Module for the chrome_shell targets."""
6 6
7 import cr 7 import cr
8 8
9 9
10 class ChromeShellTarget(cr.NamedTarget): 10 class ChromeShellTarget(cr.NamedTarget):
11 NAME = 'chrome_shell' 11 NAME = 'chrome_shell'
12 CONFIG = cr.Config.From( 12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'), 13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
14 CR_TARGET_NAME='ChromeShell', 14 CR_TARGET_NAME='ChromeShell',
15 CR_PACKAGE='org.chromium.chrome.shell', 15 CR_PACKAGE='org.chromium.chrome.shell',
16 CR_ACTIVITY='.ChromeShellActivity', 16 CR_ACTIVITY='.ChromeShellActivity',
17 ) 17 )
18 18
19 19
20 class ChromeShellTestTarget(cr.NamedTarget): 20 class ChromeShellTestTarget(cr.NamedTarget):
21 NAME = 'chrome_shell_test' 21 NAME = 'chrome_shell_test'
22 CONFIG = cr.Config.From( 22 CONFIG = cr.Config.From(
23 CR_TARGET_NAME='ChromiumTestShellTest', 23 CR_TARGET_NAME='ChromeShellTest',
24 ) 24 )
25 25
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | tools/telemetry/docs/telemetry.core.browser_finder.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698