Chromium Code Reviews| 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`. | |
|
Dirk Pranke
2016/03/08 22:38:32
it would be nice if we could script this step or s
nyquist
2016/03/08 22:56:13
I agree that it would be nice. However, the reposi
| |
| 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. Update the engine dependencies using | |
| 13 `//blimp/tools/generate-engine-manifest.py`. This step is documented in | |
| 14 `//blimp/docs/container.md`. | |
| 15 1. Run the `upload_to_google_storage.py` (from depot_tools) script to upload | |
| 16 the files. You must do this in the `//third_party/blimp_fonts` directory. | |
| 17 To do this, execute: | |
| 18 | |
| 19 ```bash | |
| 20 upload_to_google_storage.py --archive -b chromium-fonts font_bundle | |
|
maniscalco
2016/03/08 22:33:21
Neat. Even simpler now.
Dirk Pranke
2016/03/08 22:38:32
Agreed. I was mostly concerned that the upload/dow
| |
| 21 ``` | |
| 22 | |
| 23 1. Add all the `font_bundle.tar.gz.sha1` file to the chromium src repository, | |
| 24 by executing the following command: | |
| 25 | |
| 26 ```bash | |
| 27 git add ./third_party/blimp_fonts/font_bundle.tar.gz.sha1 | |
| 28 ``` | |
| 29 | |
| 30 1. Commit and upload the change for review: | |
| 31 | |
| 32 ```bash | |
| 33 git commit | |
| 34 git cl upload | |
| 35 ``` | |
| OLD | NEW |