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

Unified Diff: blimp/docs/fonts.md

Issue 1776133002: Add Android fonts to blimp engine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed references to chromeos Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/docs/container.md ('k') | blimp/docs/running.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/docs/fonts.md
diff --git a/blimp/docs/fonts.md b/blimp/docs/fonts.md
new file mode 100644
index 0000000000000000000000000000000000000000..379a5dfbdb326d237170d1bf05fa9fce10177126
--- /dev/null
+++ b/blimp/docs/fonts.md
@@ -0,0 +1,35 @@
+# Updating Blimp Fonts
+
+1. Clone the git-repositories listed in
+ `//third_party/blimp_fonts/README.chromium`, and roll forward to the commit
+ you want.
+1. Copy the necessary files to `//third_party/blimp_fonts/font_bundle`.
+1. Verify that the `fonts.xml` file include the correct fonts.
+1. Verify that the `LICENSE` file is still up to date and lists all relevant
+ licenses and which fonts use which license.
+1. Update the `//third_party/blimp_fonts` target to include all the
+ current fonts and their license files.
+1. Update the engine dependencies using
+ `//blimp/tools/generate-engine-manifest.py`. This step is documented in
+ `//blimp/docs/container.md`.
+1. Run the `upload_to_google_storage.py` (from depot_tools) script to upload
+ the files. You must do this in the `//third_party/blimp_fonts` directory.
+ To do this, execute:
+
+ ```bash
+ upload_to_google_storage.py --archive -b chromium-fonts font_bundle
+ ```
+
+1. Add all the `font_bundle.tar.gz.sha1` file to the chromium src repository,
+ by executing the following command:
+
+ ```bash
+ git add ./third_party/blimp_fonts/font_bundle.tar.gz.sha1
+ ```
+
+1. Commit and upload the change for review:
+
+ ```bash
+ git commit
+ git cl upload
+ ```
« no previous file with comments | « blimp/docs/container.md ('k') | blimp/docs/running.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698