deploy_chrome: Remove special handling for mash
It is no longer necessary to dispatch the resources for the mus
apps either. All that are needed are the manifest files for
chrome, content etc. Deploy them by default instead.
BUG=633656
Change-Id: I4f9acd61137c6fdda6280198257d69fb39078549
Reviewed-on: https://chromium-review.googlesource.com/394827
Commit-Ready: Sadrul Chowdhury <sadrul@chromium.org>
Tested-by: Sadrul Chowdhury <sadrul@chromium.org>
Reviewed-by: Steven Bennetts <stevenjb@chromium.org>
diff --git a/scripts/deploy_chrome.py b/scripts/deploy_chrome.py
index d9a4095..20cab0b 100644
--- a/scripts/deploy_chrome.py
+++ b/scripts/deploy_chrome.py
@@ -99,11 +99,7 @@
self.device = remote.RemoteDevice(options.to, port=options.port,
ping=options.ping)
self._target_dir_is_still_readonly = multiprocessing.Event()
-
- if self.options.mash:
- self.copy_paths = chrome_util.GetCopyPaths('mash')
- else:
- self.copy_paths = chrome_util.GetCopyPaths('chrome')
+ self.copy_paths = chrome_util.GetCopyPaths('chrome')
self.chrome_dir = _CHROME_DIR
def _GetRemoteMountFree(self, remote_dir):
@@ -422,9 +418,6 @@
"Overrides the default arguments.")
group.add_argument('--ping', action='store_true', default=False,
help='Ping the device before connection attempt.')
- group.add_argument('--mash', action='store_true', default=False,
- help='Copy additional files for mus+ash. Will not fit in '
- 'the default target-dir.')
group = parser.add_argument_group(
'Metadata Overrides (Advanced)',