drott | bdbc5974 | 2016-09-08 10:55:16 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "ui/gfx/font_names_testing.h" |
| 6 | |
| 7 | #include "build/build_config.h" |
| 8 | |
| 9 | namespace gfx { |
| 10 | |
| 11 | #if defined(OS_LINUX) |
| 12 | const char kSymbolFontName[] = "DejaVu Sans"; |
| 13 | #else |
| 14 | const char kSymbolFontName[] = "Symbol"; |
| 15 | #endif |
| 16 | |
| 17 | #if defined(OS_LINUX) |
| 18 | const char kCJKFontName[] = "Kochi Mincho"; |
| 19 | #elif defined(OS_MACOSX) |
| 20 | const char kCJKFontName[] = "Heiti SC"; |
| 21 | #else |
| 22 | const char kCJKFontName[] = "SimSun"; |
| 23 | #endif |
| 24 | |
| 25 | } // namespace gfx |