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

Unified Diff: chrome/test/pyautolib/fetch_prebuilt_pyauto.py

Issue 9187039: Remove more references to the deprecated webapp_it2me. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 8 years, 11 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 | « build/all.gyp ('k') | chrome/tools/build/linux/FILES.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/fetch_prebuilt_pyauto.py
diff --git a/chrome/test/pyautolib/fetch_prebuilt_pyauto.py b/chrome/test/pyautolib/fetch_prebuilt_pyauto.py
index 1bc62c43dc08816c96477b9b707ddca70999f161..d6287d725ac05dfe4335cb97700036caf4fc8cb4 100755
--- a/chrome/test/pyautolib/fetch_prebuilt_pyauto.py
+++ b/chrome/test/pyautolib/fetch_prebuilt_pyauto.py
@@ -81,7 +81,7 @@ class FetchPrebuilt(object):
# Setup urls to download.
self._chrome_zip_url = '%s/%s.zip' % (self._url, self._chrome_zip_name)
- self._it2me_zip_url = self._url + '/' + 'remoting-it2me.zip'
+ self._remoting_zip_url = self._url + '/' + 'remoting-webapp.zip'
chrome_test_url = '%s/%s.test' % (self._url, self._chrome_zip_name)
self._pyautolib_py_url = '%s/pyautolib.py' % chrome_test_url
if self._options.platform == 'win':
@@ -111,17 +111,17 @@ class FetchPrebuilt(object):
self._ParseArgs()
if not os.path.isdir(self._outdir):
os.makedirs(self._outdir)
- get_it2me = self._DoesURLExist(self._it2me_zip_url)
+ get_remoting = self._DoesURLExist(self._remoting_zip_url)
# Fetch chrome & pyauto binaries
print 'Fetching', self._chrome_zip_url
chrome_zip = urllib.urlretrieve(self._chrome_zip_url)[0]
- if get_it2me:
- print 'Fetching', self._it2me_zip_url
- it2me_zip = urllib.urlretrieve(self._it2me_zip_url)[0]
+ if get_remoting:
+ print 'Fetching', self._remoting_zip_url
+ remoting_zip = urllib.urlretrieve(self._remoting_zip_url)[0]
else:
- print 'Warning: %s does not exist.' % self._it2me_zip_url
+ print 'Warning: %s does not exist.' % self._remoting_zip_url
print 'Fetching', self._pyautolib_py_url
pyautolib_py = urllib.urlretrieve(self._pyautolib_py_url)[0]
@@ -138,10 +138,10 @@ class FetchPrebuilt(object):
pyauto_utils.RemovePath(chrome_unzip_dir)
print 'Unzipping'
pyauto_utils.UnzipFilenameToDir(chrome_zip, self._outdir)
- if get_it2me:
- pyauto_utils.UnzipFilenameToDir(it2me_zip, self._outdir)
- shutil.move(self._outdir + '/remoting-it2me',
- self._outdir + '/remoting/it2me.webapp')
+ if get_remoting:
+ pyauto_utils.UnzipFilenameToDir(remoting_zip, self._outdir)
+ shutil.move(self._outdir + '/remoting-webapp',
+ self._outdir + '/remoting/remoting.webapp')
# Copy over the binaries to outdir
items_to_copy = {
« no previous file with comments | « build/all.gyp ('k') | chrome/tools/build/linux/FILES.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698