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

Unified Diff: src/rootfs_static_data/common/etc/fonts/local.conf

Issue 424011: build: Update fontconfig to fall back on Droid. (Closed)
Patch Set: update usernames Created 11 years, 1 month 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 | « src/rootfs_static_data/common/etc/X11/xorg.conf ('k') | src/rootfs_static_data/common/etc/gtk-2.0/gtkrc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/rootfs_static_data/common/etc/fonts/local.conf
diff --git a/src/rootfs_static_data/common/etc/fonts/local.conf b/src/rootfs_static_data/common/etc/fonts/local.conf
new file mode 100644
index 0000000000000000000000000000000000000000..fb647fe03054a6e0f4504224a22104456b84fd95
--- /dev/null
+++ b/src/rootfs_static_data/common/etc/fonts/local.conf
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<fontconfig>
+ <!-- Use Droid fonts by default. -->
+ <alias binding="same">
+ <family>sans-serif</family>
+ <default>
+ <family>Droid Sans</family>
+ </default>
+ </alias>
+ <alias binding="same">
+ <family>serif</family>
+ <default>
+ <family>Droid Serif</family>
+ </default>
+ </alias>
+ <alias binding="same">
+ <family>monospace</family>
+ <default>
+ <family>Droid Sans Mono</family>
+ </default>
+ </alias>
+</fontconfig>
« no previous file with comments | « src/rootfs_static_data/common/etc/X11/xorg.conf ('k') | src/rootfs_static_data/common/etc/gtk-2.0/gtkrc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698