Index: build/android/adb_run_mojo_shell |
diff --git a/build/android/adb_run_mojo_shell b/build/android/adb_run_mojo_shell |
index 6f55fb2e9074f9613d5ba40da227ae479ab88a34..18e796d2c10b32ed5ded4d256dfdca719f8f6cb7 100755 |
--- a/build/android/adb_run_mojo_shell |
+++ b/build/android/adb_run_mojo_shell |
@@ -4,13 +4,11 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-if [ $# -gt 0 ] ; then |
- INTENT_ARGS="-d \"$1\"" # e.g. a URL |
-fi |
+optional_url=$1 |
adb logcat -c |
adb shell am start -S \ |
-a android.intent.action.VIEW \ |
-n org.chromium.mojo_shell_apk/.MojoShellActivity \ |
- $INTENT_ARGS |
+ ${optional_url:+-d "$optional_url"} |
adb logcat -s MojoShellApplication MojoShellActivity chromium |