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

Unified Diff: README.md

Issue 1241263009: Rename shell runner and debugger -> mojo_run, mojo_debug. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | examples/dart/camera_roll/camera_roll.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
diff --git a/README.md b/README.md
index 19c1d0335e6148dee2a51db1cde632e89fa2992e..5fb53ff994fe2f604c069bd1c9076aa804708231 100644
--- a/README.md
+++ b/README.md
@@ -212,24 +212,24 @@ $ mojo/tools/mojob.py dartcheck
## Run Mojo Shell
-Devtools script `mojo_shell` is a universal shell runner abstracting away the
+Devtools script `mojo_run` is a universal shell runner abstracting away the
differences between running on Linux and Android. Having built Mojo as
described above, a demo app can be run as follows:
```
-mojo/devtools/common/mojo_shell mojo:spinning_cube # Linux.
-mojo/devtools/common/mojo_shell mojo:spinning_cube --android # Android.
+mojo/devtools/common/mojo_run mojo:spinning_cube # Linux.
+mojo/devtools/common/mojo_run mojo:spinning_cube --android # Android.
```
Pass `--sky path_to_sky_file` to run a
[Sky](https://github.com/domokit/mojo/tree/master/sky) app on either platform:
```
-mojo/devtools/common/mojo_shell --sky sky/examples/raw/hello_world.dart
-mojo/devtools/common/mojo_shell --sky sky/examples/raw/hello_world.dart --android
+mojo/devtools/common/mojo_run --sky sky/examples/raw/hello_world.dart
+mojo/devtools/common/mojo_run --sky sky/examples/raw/hello_world.dart --android
```
Passing the `-v` flag will increase the output verbosity. In particular, it will
-also print all arguments passed by `mojo_shell` to the shell binary.
+also print all arguments passed by `mojo_run` to the shell binary.
### Chromoting
@@ -237,13 +237,13 @@ Some Mojo apps (Sky apps in particular) will need the --use-osmesa flag to run
over [chromoting](https://support.google.com/chrome/answer/1649523?hl=en):
```
-mojo/devtools/common/mojo_shell --sky sky/examples/raw/hello_world.dart --use-osmesa
+mojo/devtools/common/mojo_run --sky sky/examples/raw/hello_world.dart --use-osmesa
```
### <a name="debugging"></a>Debugging, tracing, profiling
-Devtools `debugger` script allows you to interactively inspect a running shell,
-collect performance traces and attach a gdb debugger. Refer to the
+Devtools `mojo_debug` script allows you to interactively inspect a running
+shell, collect performance traces and attach a gdb debugger. Refer to the
[documentation](https://github.com/domokit/devtools/blob/master/README.md#debugger)
for details.
« no previous file with comments | « no previous file | examples/dart/camera_roll/camera_roll.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698