| OLD | NEW |
| 1 # depot_tools | 1 # depot_tools |
| 2 | 2 |
| 3 This package contains tools for working with Chromium development. It requires | 3 This package contains tools for working with Chromium development. It requires |
| 4 python 2.7. | 4 python 2.7. |
| 5 | 5 |
| 6 |
| 6 ## Tools | 7 ## Tools |
| 7 | 8 |
| 8 The most important tools are: | 9 The most important tools are: |
| 9 | 10 |
| 10 - `fetch`: A `gclient` wrapper to checkout a project. Use `fetch --help` for | 11 - `fetch`: A `gclient` wrapper to checkout a project. Use `fetch --help` for |
| 11 more details. | 12 more details. |
| 12 - `gclient`: A meta-checkout tool. Think | 13 - `gclient`: A meta-checkout tool. Think |
| 13 [repo](https://source.android.com/source/using-repo.html) or [git | 14 [repo](https://source.android.com/source/using-repo.html) or [git |
| 14 submodules](https://git-scm.com/docs/git-submodule), except that it support | 15 submodules](https://git-scm.com/docs/git-submodule), except that it support |
| 15 OS-specific rules, e.g. do not checkout Windows only dependencies when | 16 OS-specific rules, e.g. do not checkout Windows only dependencies when |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 # If change needs more work. | 60 # If change needs more work. |
| 60 git rebase-update | 61 git rebase-update |
| 61 ... | 62 ... |
| 62 git cl upload -t "Fixes goat teleporter destination to be Australia" | 63 git cl upload -t "Fixes goat teleporter destination to be Australia" |
| 63 | 64 |
| 64 | 65 |
| 65 ### cpplint.py | 66 ### cpplint.py |
| 66 | 67 |
| 67 To update cpplint.py, please submit the change upstream first at | 68 To update cpplint.py, please submit the change upstream first at |
| 68 https://github.com/google/styleguide/tree/gh-pages/cpplint then copy it down. | 69 https://github.com/google/styleguide/tree/gh-pages/cpplint then copy it down. |
| OLD | NEW |