| OLD | NEW |
| 1 Mojo | 1 Mojo |
| 2 ==== | 2 ==== |
| 3 | 3 |
| 4 Mojo is an effort to extract a common platform out of Chrome's renderer and | 4 Mojo is an effort to extract a common platform out of Chrome's renderer and |
| 5 plugin processes that can support multiple types of sandboxed content, such as | 5 plugin processes that can support multiple types of sandboxed content, such as |
| 6 HTML, Pepper, or NaCl. | 6 HTML, Pepper, or NaCl. |
| 7 | 7 |
| 8 ## Set-up and code check-out | 8 ## Set-up and code check-out |
| 9 | 9 |
| 10 The instructions below only need to be done once. Note that a simple "git clone" | 10 The instructions below only need to be done once. Note that a simple "git clone" |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 By default, `mojo_run` uses mojo:kiosk_wm as the window | 199 By default, `mojo_run` uses mojo:kiosk_wm as the window |
| 200 manager. You can pass a different window manager url using the | 200 manager. You can pass a different window manager url using the |
| 201 `--window-manager` flag to override this. | 201 `--window-manager` flag to override this. |
| 202 | 202 |
| 203 For additional information on `mojo_run` refer to the built-in help and the | 203 For additional information on `mojo_run` refer to the built-in help and the |
| 204 [documentation](mojo/devtools/common/docs/mojo_run.md). | 204 [documentation](mojo/devtools/common/docs/mojo_run.md). |
| 205 You can also request more information on what the tool is doing for you by | 205 You can also request more information on what the tool is doing for you by |
| 206 passing the `--verbose` flag. | 206 passing the `--verbose` flag. |
| 207 | 207 |
| 208 ### Running a Sky app | |
| 209 | |
| 210 To run a **local build** of Sky with a **local build** of Mojo, follow steps | |
| 211 described in the [sky config file](mojo/tools/configs/sky). Note that the | |
| 212 version of Sky has to be compatible with the version of Mojo for this to work. | |
| 213 | |
| 214 ### <a name="debugging"></a>Debugging, tracing, profiling | 208 ### <a name="debugging"></a>Debugging, tracing, profiling |
| 215 | 209 |
| 216 Devtools `mojo_debug` allows you to interactively inspect a running shell, | 210 Devtools `mojo_debug` allows you to interactively inspect a running shell, |
| 217 collect performance traces and attach a gdb debugger. | 211 collect performance traces and attach a gdb debugger. |
| 218 | 212 |
| 219 For additional information refer to the built-in help and the | 213 For additional information refer to the built-in help and the |
| 220 [documentation](mojo/devtools/common/docs/mojo_debug.md). | 214 [documentation](mojo/devtools/common/docs/mojo_debug.md). |
| 221 | 215 |
| 222 ### Android set-up | 216 ### Android set-up |
| 223 | 217 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 making your first change: [C++ in Chromium | 284 making your first change: [C++ in Chromium |
| 291 101](http://dev.chromium.org/developers/cpp-in-chromium-101-codelab). | 285 101](http://dev.chromium.org/developers/cpp-in-chromium-101-codelab). |
| 292 | 286 |
| 293 To land a change after receiving LGTM: | 287 To land a change after receiving LGTM: |
| 294 ``` | 288 ``` |
| 295 $ git cl land | 289 $ git cl land |
| 296 ``` | 290 ``` |
| 297 | 291 |
| 298 Don't break the build! Waterfall is here: | 292 Don't break the build! Waterfall is here: |
| 299 http://build.chromium.org/p/client.mojo/waterfall | 293 http://build.chromium.org/p/client.mojo/waterfall |
| OLD | NEW |