Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: blimp/docs/fonts.md

Issue 2239923002: Make blimp work on K (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits and sync to head Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/docs/running.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Updating Blimp Fonts 1 # Updating Blimp Fonts
2 2
3 1. Clone the git-repositories listed in 3 1. Clone the git-repositories listed in
4 `//third_party/blimp_fonts/README.chromium`, and roll forward to the commit 4 `//third_party/blimp_fonts/README.chromium`, and roll forward to the commit
5 you want. 5 you want.
6 1. Copy the necessary files to `//third_party/blimp_fonts/font_bundle`. 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. 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 8 1. Verify that the `LICENSE` file is still up to date and lists all relevant
9 licenses and which fonts use which license. 9 licenses and which fonts use which license.
10 1. Update the `//third_party/blimp_fonts` target to include all the 10 1. Update the `//third_party/blimp_fonts` target to include all the
11 current fonts and their license files. 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 12 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. 13 the files. You must do this in the `//third_party/blimp_fonts` directory.
17 To do this, execute: 14 To do this, execute:
18 15
19 ```bash 16 ```bash
20 upload_to_google_storage.py --archive -b chromium-fonts font_bundle 17 upload_to_google_storage.py --archive -b chromium-fonts font_bundle
21 ``` 18 ```
22 19
23 1. Add all the `font_bundle.tar.gz.sha1` file to the chromium src repository, 20 1. Add all the `font_bundle.tar.gz.sha1` file to the chromium src repository,
24 by executing the following command: 21 by executing the following command:
25 22
26 ```bash 23 ```bash
27 git add ./third_party/blimp_fonts/font_bundle.tar.gz.sha1 24 git add ./third_party/blimp_fonts/font_bundle.tar.gz.sha1
28 ``` 25 ```
29 26
30 1. Commit and upload the change for review: 27 1. Commit and upload the change for review:
31 28
32 ```bash 29 ```bash
33 git commit 30 git commit
34 git cl upload 31 git cl upload
35 ``` 32 ```
OLDNEW
« no previous file with comments | « no previous file | blimp/docs/running.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698