| Index: mojo/tools/android_mojo_shell.py
|
| diff --git a/mojo/tools/android_mojo_shell.py b/mojo/tools/android_mojo_shell.py
|
| index 73541d2bd6f2d703ccb2322267dcb49b0557b8b6..b1bbe000050f172560181cc9a6961df11d473391 100755
|
| --- a/mojo/tools/android_mojo_shell.py
|
| +++ b/mojo/tools/android_mojo_shell.py
|
| @@ -24,7 +24,7 @@ def main():
|
| debug_group.add_argument('--release', help='Release build', default=False,
|
| dest='debug', action='store_false')
|
| parser.add_argument('--target-cpu', help='CPU architecture to run for.',
|
| - choices=['x64', 'x86', 'arm'])
|
| + choices=['x64', 'x86', 'arm'], default='arm')
|
| parser.add_argument('--origin', help='Origin for mojo: URLs.',
|
| default='localhost')
|
| parser.add_argument('--target-device', help='Device to run on.')
|
| @@ -35,8 +35,8 @@ def main():
|
| is_debug=launcher_args.debug,
|
| apk_name="MojoRunner.apk")
|
| paths = Paths(config)
|
| - shell = AndroidShell(paths.target_mojo_shell_path, paths.build_dir,
|
| - paths.adb_path, launcher_args.target_device)
|
| + shell = AndroidShell(paths.mojo_runner, paths.build_dir, paths.adb_path,
|
| + launcher_args.target_device)
|
|
|
| extra_shell_args = shell.PrepareShellRun(launcher_args.origin)
|
| args.extend(extra_shell_args)
|
|
|