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

Unified Diff: build/android/adb_install_content_shell

Issue 10836323: Change Android build configurations (step 2). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed unnecessary changes Created 8 years, 4 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 | « no previous file | build/android/device_stats_monitor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_install_content_shell
diff --git a/build/android/adb_install_content_shell b/build/android/adb_install_content_shell
index a7cc2182cd47aa3f5707f3a90609b1be21d1e1d0..fd883cc5ba13b20303f15f10084d5d475aaed0ba 100755
--- a/build/android/adb_install_content_shell
+++ b/build/android/adb_install_content_shell
@@ -5,27 +5,35 @@
# found in the LICENSE file.
from multiprocessing import Process
+import optparse
import os
+import sys
from pylib import android_commands
+from pylib import test_options_parser
-def InstallContentShell(device):
+def InstallContentShell(device, build_type):
apk_path = os.path.join(os.environ['CHROME_SRC'],
- 'out/Release/content_shell/ContentShell-debug.apk')
+ 'out', build_type,
+ 'content_shell', 'ContentShell-debug.apk')
result = android_commands.AndroidCommands(device=device).ManagedInstall(
apk_path, False, 'org.chromium.content_shell')
print '----- Installed on %s -----' % device
print result
+parser = optparse.OptionParser()
+test_options_parser.AddBuildTypeOption(parser)
+options, args = parser.parse_args(sys.argv)
+
devices = android_commands.GetAttachedDevices()
if not devices:
raise Exception('Error: no connected devices')
procs = []
for device in devices:
- p = Process(target=InstallContentShell, args=(device,))
+ p = Process(target=InstallContentShell, args=(device, options.build_type))
p.start()
procs += [p]
« no previous file with comments | « no previous file | build/android/device_stats_monitor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698