OLD | NEW |
(Empty) | |
| 1 To build Dart for Mac and Linux, we pull Fuchsia's buildtools, which is also |
| 2 used by Flutter. Fuchsia's buildtools includes gn, ninja, and the clang |
| 3 toolchain. Fuchsia buildtools vends clang-format as part of the clang toolchain. |
| 4 Since Fuchsia's buildtools doesn't vend a clang toolchain for Windows, we can't |
| 5 get a Windows clang-format binary from it. Therefore, from Chromium's buildtools |
| 6 here: |
| 7 |
| 8 https://chromium.googlesource.com/chromium/buildtools |
| 9 |
| 10 we copy the hash file for its Windows clang-format binary, and pull it down |
| 11 from google storage in the update.py script in this directory. |
| 12 |
| 13 To update to a newer Windows clang-format binary, simply overwrite the hash in |
| 14 clang-format.exe.sha1 with a newer one, and then do a 'gclient sync'. |
OLD | NEW |