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

Side by Side Diff: ui/gfx/test/fontconfig_util_linux.cc

Issue 2504863002: Revert of Replace kochi-*.ttf with IPA Fonts. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « docs/layout_tests_linux.md ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/test/fontconfig_util_linux.h" 5 #include "ui/gfx/test/fontconfig_util_linux.h"
6 6
7 #include <fontconfig/fontconfig.h> 7 #include <fontconfig/fontconfig.h>
8 8
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
14 14
15 namespace gfx { 15 namespace gfx {
16 16
17 const char* const kSystemFontsForFontconfig[] = { 17 const char* const kSystemFontsForFontconfig[] = {
18 "/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf", 18 "/usr/share/fonts/truetype/kochi/kochi-gothic.ttf",
19 "/usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf", 19 "/usr/share/fonts/truetype/kochi/kochi-mincho.ttf",
20 "/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf",
21 "/usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf",
22 "/usr/share/fonts/truetype/msttcorefonts/Arial.ttf", 20 "/usr/share/fonts/truetype/msttcorefonts/Arial.ttf",
23 "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf", 21 "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf",
24 "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf", 22 "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf",
25 "/usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf", 23 "/usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf",
26 "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf", 24 "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf",
27 "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf", 25 "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf",
28 "/usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf", 26 "/usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf",
29 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf", 27 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf",
30 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf", 28 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf",
31 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf", 29 "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 const std::string& preferred_family) { 161 const std::string& preferred_family) {
164 return base::StringPrintf( 162 return base::StringPrintf(
165 " <alias>\n" 163 " <alias>\n"
166 " <family>%s</family>\n" 164 " <family>%s</family>\n"
167 " <prefer><family>%s</family></prefer>\n" 165 " <prefer><family>%s</family></prefer>\n"
168 " </alias>\n", 166 " </alias>\n",
169 original_family.c_str(), preferred_family.c_str()); 167 original_family.c_str(), preferred_family.c_str());
170 } 168 }
171 169
172 } // namespace gfx 170 } // namespace gfx
OLDNEW
« no previous file with comments | « docs/layout_tests_linux.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698