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

Side by Side Diff: resources/android_fonts/pre_v17/system_fonts.xml

Issue 439813002: Test and generalize font configuration parser (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix nit and install Android fonts.xml update Created 6 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 System Fonts
4
5 This file lists the font families that will be used by default for all suppo rted glyphs.
6 Each entry consists of a family, various names that are supported by that fa mily, and
7 up to four font files. The font files are listed in the order of the styles which they
8 support: regular, bold, italic and bold-italic. If less than four styles are listed, then
9 the styles with no associated font file will be supported by the other font files listed.
10
11 The first family is also the default font, which handles font request that h ave not specified
12 specific font names.
13
14 Any glyph that is not handled by the system fonts will cause a search of the fallback fonts.
15 The default fallback fonts are specified in the file /system/etc/fallback_fo nts.xml, and there
16 is an optional file which may be supplied by vendors to specify other fallba ck fonts to use
17 in /vendor/etc/fallback_fonts.xml.
18 -->
19 <familyset>
20
21 <family>
22 <nameset>
23 <name>sans-serif</name>
24 <name>arial</name>
25 <name>helvetica</name>
26 <name>tahoma</name>
27 <name>verdana</name>
28 </nameset>
29 <fileset>
30 <file>Roboto-Regular.ttf</file>
31 <file>Roboto-Bold.ttf</file>
32 <file>Roboto-Italic.ttf</file>
33 <file>Roboto-BoldItalic.ttf</file>
34 </fileset>
35 </family>
36
37 <family>
38 <nameset>
39 <name>serif</name>
40 <name>times</name>
41 <name>times new roman</name>
42 <name>palatino</name>
43 <name>georgia</name>
44 <name>baskerville</name>
45 <name>goudy</name>
46 <name>fantasy</name>
47 <name>cursive</name>
48 <name>ITC Stone Serif</name>
49 </nameset>
50 <fileset>
51 <file>DroidSerif-Regular.ttf</file>
52 <file>DroidSerif-Bold.ttf</file>
53 <file>DroidSerif-Italic.ttf</file>
54 <file>DroidSerif-BoldItalic.ttf</file>
55 </fileset>
56 </family>
57
58 <family>
59 <nameset>
60 <name>Droid Sans</name>
61 </nameset>
62 <fileset>
63 <file>DroidSans.ttf</file>
64 <file>DroidSans-Bold.ttf</file>
65 </fileset>
66 </family>
67
68 <family>
69 <nameset>
70 <name>monospace</name>
71 <name>courier</name>
72 <name>courier new</name>
73 <name>monaco</name>
74 </nameset>
75 <fileset>
76 <file>DroidSansMono.ttf</file>
77 </fileset>
78 </family>
79
80 </familyset>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698