OLD | NEW |
| (Empty) |
1 # Updating Blimp Fonts | |
2 | |
3 1. Clone the git-repositories listed in | |
4 `//third_party/blimp_fonts/README.chromium`, and roll forward to the commit | |
5 you want. | |
6 1. Copy the necessary files to `//third_party/blimp_fonts/font_bundle`. | |
7 1. Verify that the `fonts.xml` file include the correct fonts. | |
8 1. Verify that the `LICENSE` file is still up to date and lists all relevant | |
9 licenses and which fonts use which license. | |
10 1. Update the `//third_party/blimp_fonts` target to include all the | |
11 current fonts and their license files. | |
12 1. Run the `upload_to_google_storage.py` (from depot_tools) script to upload | |
13 the files. You must do this in the `//third_party/blimp_fonts` directory. | |
14 To do this, execute: | |
15 | |
16 ```bash | |
17 upload_to_google_storage.py --archive -b chromium-fonts font_bundle | |
18 ``` | |
19 | |
20 1. Add all the `font_bundle.tar.gz.sha1` file to the chromium src repository, | |
21 by executing the following command: | |
22 | |
23 ```bash | |
24 git add ./third_party/blimp_fonts/font_bundle.tar.gz.sha1 | |
25 ``` | |
26 | |
27 1. Commit and upload the change for review: | |
28 | |
29 ```bash | |
30 git commit | |
31 git cl upload | |
32 ``` | |
OLD | NEW |