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

Unified Diff: mandoline/tools/android_run_mandoline.py

Issue 1152663002: Makes android.py support gdb (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review feedback and symbols Created 5 years, 7 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 | mojo/tools/mopy/android.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/tools/android_run_mandoline.py
diff --git a/mandoline/tools/android_run_mandoline.py b/mandoline/tools/android_run_mandoline.py
index a68f3e6497884af13153efa5edfbc662c1acaf5a..f0481a3152f3cf19aad2d189a6f575a5c4f1bd9a 100755
--- a/mandoline/tools/android_run_mandoline.py
+++ b/mandoline/tools/android_run_mandoline.py
@@ -30,6 +30,11 @@ def main():
parser.add_argument('--target-cpu', help='CPU architecture to run for.',
choices=['x64', 'x86', 'arm'], default='arm')
parser.add_argument('--target-device', help='Device to run on.')
+ parser.add_argument('--dont-install',
+ help='Disables installing the apk',
+ default=False, action='store_true')
+ parser.add_argument('--gdb', help='Run gdb',
+ default=False, action='store_true')
launcher_args, args = parser.parse_known_args()
config = Config(target_os=Config.OS_ANDROID,
@@ -39,14 +44,16 @@ def main():
paths = Paths(config)
shell = AndroidShell(paths.apk_path, paths.build_dir, paths.adb_path,
launcher_args.target_device,
- target_package='org.chromium.mandoline')
+ target_package='org.chromium.mandoline',
+ src_root=paths.src_root)
- extra_shell_args = shell.PrepareShellRun()
+ extra_shell_args = shell.PrepareShellRun(
+ install=not launcher_args.dont_install, gdb=launcher_args.gdb)
args.extend(extra_shell_args)
shell.CleanLogs()
p = shell.ShowLogs()
- shell.StartShell(args, sys.stdout, p.terminate)
+ shell.StartShell(args, sys.stdout, p.terminate, launcher_args.gdb)
return 0
« no previous file with comments | « no previous file | mojo/tools/mopy/android.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698