deploy_chrome: Remove special handling for mash
It is no longer necesasry to dispatch the resources for the mus
apps. All that are needed are the manifest files for chrome,
content etc. Deploy by them default instead (optinally, when
available).
BUG=633656
Change-Id: I86dea87cc6e5f8da277acf3d135df4845fa95359
Reviewed-on: https://chromium-review.googlesource.com/413110
Commit-Ready: Nicolas Boichat <drinkcat@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..6773c52 100644
--- a/scripts/deploy_chrome.py
+++ b/scripts/deploy_chrome.py
@@ -100,10 +100,7 @@
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 +419,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)',