OLD | NEW |
1 This package contains tools for working with Chromium development. | 1 This package contains tools for working with Chromium development: |
2 | 2 |
3 The "gclient" wrapper knows how to keep this repository updated to | |
4 the latest versions of these tools as found at: | |
5 | |
6 https://chromium.googlesource.com/chromium/tools/depot_tools/+/master/gclien
t.py | |
7 | |
8 This package contains: | |
9 | |
10 chrome-update-create-task.bat | 3 chrome-update-create-task.bat |
11 Creates a scheduled task to do an automatic local chromium build every day. | 4 Creates a scheduled task to do an automatic local chromium build every day. |
12 | 5 |
13 cpplint.py | 6 cpplint.py |
14 A copy of our linting tool which enforces Google style. Fetched from | 7 A copy of our linting tool which enforces Google style. Fetched from |
15 http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py | 8 http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py |
16 | 9 |
17 gcl | 10 gcl |
18 A tool for uploading and managing code reviews on the Chromium | 11 A tool for uploading and managing code reviews on the Chromium |
19 project, using the Rietveld code review tool. More info at: | 12 project, using the Rietveld code review tool. More info at: |
20 http://code.google.com/p/rietveld/ | 13 http://code.google.com/p/rietveld/ |
21 | 14 |
22 gclient | 15 gclient |
23 A script for managing a workspace with modular dependencies that | 16 A script for managing a workspace with modular dependencies that |
24 are each checked out independently from different repositories. | 17 are each checked out independently from different repositories. |
25 More info at: | 18 More info at: |
26 http://code.google.com/p/gclient/ | 19 http://code.google.com/p/gclient/ |
27 | 20 |
28 Note: svn and python will be installed automatically if not accessible (on | 21 It updates itself automatically when running `gclient` tool. To disable |
29 Windows only). | 22 auto update, set the environment variable DEPOT_TOOLS_UPDATE=0 |
30 | 23 |
31 To update this distribution manually, run .\update_depot_tools.bat on Windows, | 24 To update package manually, run .\update_depot_tools.bat on Windows, |
32 or ./update_depot_tools on Linux or Mac. | 25 or ./update_depot_tools on Linux or Mac. |
33 | 26 |
34 To disable automatic updating, set the environment variable DEPOT_TOOLS_UPDATE=0 | 27 Note: on Windows if svn, git and python are not accessible, they will be |
| 28 downloaded too. |
| 29 |
| 30 |
| 31 ## Contributing |
| 32 |
| 33 The "gclient" wrapper knows how to keep this repository updated to |
| 34 the latest versions of these tools as found at: |
| 35 |
| 36 https://chromium.googlesource.com/chromium/tools/depot_tools.git |
| 37 |
| 38 To contribute change for review: |
| 39 |
| 40 git new-branch <somename> |
| 41 git add <yourchanges> |
| 42 git commit |
| 43 # find reviewers |
| 44 git cl owners |
| 45 git log <yourfiles> |
| 46 # upload |
| 47 git cl upload -r reviewer1@chromium.org,reviewer2 --send-mail |
| 48 # open https://codereview.chromium.org/ and send mail |
| 49 |
| 50 # if change is approved, flag it to be commited |
| 51 git cl set_commit |
| 52 # if change needs more work |
| 53 git rebase-update |
| 54 ... |
| 55 git cl upload |
OLD | NEW |