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 |
7 ## Tools | 7 ## Tools |
8 | 8 |
9 The most important tools are: | 9 The most important tools are: |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 | 26 |
27 ## Updating | 27 ## Updating |
28 | 28 |
29 `depot_tools` updates itself automatically when running `gclient` tool. To | 29 `depot_tools` updates itself automatically when running `gclient` tool. To |
30 disable auto update, set the environment variable `DEPOT_TOOLS_UPDATE=0`. | 30 disable auto update, set the environment variable `DEPOT_TOOLS_UPDATE=0`. |
31 | 31 |
32 To update package manually, run `update_depot_tools.bat` on Windows, | 32 To update package manually, run `update_depot_tools.bat` on Windows, |
33 or `./update_depot_tools` on Linux or Mac. | 33 or `./update_depot_tools` on Linux or Mac. |
34 | 34 |
35 On Windows only, running `gclient` will install `svn` (not for long), `git`, | 35 On Windows only, running `gclient` will install `git` and `python`. |
36 `python`. | |
37 | 36 |
38 | 37 |
39 ## Contributing | 38 ## Contributing |
40 | 39 |
41 To contribute change for review: | 40 To contribute change for review: |
42 | 41 |
43 git new-branch <somename> | 42 git new-branch <somename> |
44 # Hack | 43 # Hack |
45 git add . | 44 git add . |
46 git commit -a -m "Fixes goat teleporting" | 45 git commit -a -m "Fixes goat teleporting" |
(...skipping 13 matching lines...) Expand all Loading... |
60 # If change needs more work. | 59 # If change needs more work. |
61 git rebase-update | 60 git rebase-update |
62 ... | 61 ... |
63 git cl upload -t "Fixes goat teleporter destination to be Australia" | 62 git cl upload -t "Fixes goat teleporter destination to be Australia" |
64 | 63 |
65 | 64 |
66 ### cpplint.py | 65 ### cpplint.py |
67 | 66 |
68 To update cpplint.py, please submit the change upstream first at | 67 To update cpplint.py, please submit the change upstream first at |
69 https://github.com/google/styleguide/tree/gh-pages/cpplint then copy it down. | 68 https://github.com/google/styleguide/tree/gh-pages/cpplint then copy it down. |
OLD | NEW |