| OLD | NEW |
| 1 # Windows binary tool bootstrap | 1 # Windows binary tool bootstrap |
| 2 | 2 |
| 3 This directory has the 'magic' for the `depot_tools` windows binary update | 3 This directory has the 'magic' for the `depot_tools` windows binary update |
| 4 mechanisms. | 4 mechanisms. |
| 5 | 5 |
| 6 ## Software bootstrapped | 6 ## Software bootstrapped |
| 7 * Python (https://www.python.org/) | 7 * Python (https://www.python.org/) |
| 8 * Git for Windows (https://git-for-windows.github.io/) | 8 * Git for Windows (https://git-for-windows.github.io/) |
| 9 * Subversion (https://subversion.apache.org/) | 9 * Subversion (https://subversion.apache.org/) |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 1. Commit the CL. | 46 1. Commit the CL. |
| 47 | 47 |
| 48 Note that in order for the update to take effect, `gclient` currently needs to | 48 Note that in order for the update to take effect, `gclient` currently needs to |
| 49 run twice. The first time it will update the `depot_tools` repo, and the second | 49 run twice. The first time it will update the `depot_tools` repo, and the second |
| 50 time it will see the new git version and update to it. This is a bug that should | 50 time it will see the new git version and update to it. This is a bug that should |
| 51 be fixed, in case you're reading this and this paragraph infuriates you more | 51 be fixed, in case you're reading this and this paragraph infuriates you more |
| 52 than the rest of this README. | 52 than the rest of this README. |
| 53 | 53 |
| 54 ### Python | 54 ### Python |
| 55 | 55 |
| 56 Python installs are sourced from https://src.chromium.org/viewvc/chrome/trunk/to
ols/ . | 56 Python installs are sourced from gs://chrome-infra/python276_bin.zip . |
| 57 | 57 |
| 58 The process to create them is sort-of-documented in the README of the python | 58 The process to create them is sort-of-documented in the README of the python |
| 59 zip file. | 59 zip file. |
| 60 | 60 |
| 61 ### Subversion | 61 ### Subversion |
| 62 | 62 |
| 63 Subversion installs are sourced from https://src.chromium.org/viewvc/chrome/trun
k/tools/ . | 63 Subversion installs are sourced from gs://chrome-infra/svn_bin.zip . |
| 64 | 64 |
| 65 There will likely never be an update to SVN in `depot_tools` from the current | 65 There will likely never be an update to SVN in `depot_tools` from the current |
| 66 version. | 66 version. |
| OLD | NEW |