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

Unified Diff: tools/cr/cr/targets/chrome_shell.py

Issue 189133005: Rename chromium_testshell target to chrome_shell_apk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/cr/cr/base/android.py ('k') | tools/cr/cr/targets/chromium_testshell.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/cr/cr/targets/chrome_shell.py
diff --git a/tools/cr/cr/targets/chromium_testshell.py b/tools/cr/cr/targets/chrome_shell.py
similarity index 69%
rename from tools/cr/cr/targets/chromium_testshell.py
rename to tools/cr/cr/targets/chrome_shell.py
index 0d8351be83595a73bd05245dae730650601c5586..928811ec4e53ff9b0b9d5def2b4fa557d03617e4 100644
--- a/tools/cr/cr/targets/chromium_testshell.py
+++ b/tools/cr/cr/targets/chrome_shell.py
@@ -2,27 +2,27 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Module for the chromium_testshell targets."""
+"""Module for the chrome_shell targets."""
import cr
-class ChromiumTestShellTarget(cr.NamedTarget):
- NAME = 'chromium_testshell'
+class ChromeShellTarget(cr.NamedTarget):
+ NAME = 'chrome_shell'
DEFAULT = cr.Config.From(
# CR_URL is the page to open when the target is run.
CR_URL='https://www.google.com/',
)
CONFIG = cr.Config.From(
CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
- CR_TARGET_NAME='ChromiumTestShell',
+ CR_TARGET_NAME='ChromeShell',
CR_PACKAGE='org.chromium.chrome.shell',
CR_ACTIVITY='.ChromeShellActivity',
)
-class ChromiumTestShellTestTarget(cr.NamedTarget):
- NAME = 'chromium_testshell_test'
+class ChromeShellTestTarget(cr.NamedTarget):
+ NAME = 'chrome_shell_test'
CONFIG = cr.Config.From(
CR_TARGET_NAME='ChromiumTestShellTest',
)
« no previous file with comments | « tools/cr/cr/base/android.py ('k') | tools/cr/cr/targets/chromium_testshell.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698