OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Test.h" | |
9 #include "SkCommandLineFlags.h" | 8 #include "SkCommandLineFlags.h" |
10 #include "SkFontMgr.h" | 9 #include "SkFontMgr.h" |
11 #include "SkOTTable_name.h" | 10 #include "SkOTTable_name.h" |
12 #include "SkTypeface.h" | 11 #include "SkTypeface.h" |
| 12 #include "Test.h" |
13 | 13 |
14 #include <stddef.h> | 14 #include <stddef.h> |
15 | 15 |
16 template <size_t R, size_t D> struct Format0NameTable { | 16 template <size_t R, size_t D> struct Format0NameTable { |
17 SkOTTableName header; | 17 SkOTTableName header; |
18 SkOTTableName::Record nameRecord[R]; | 18 SkOTTableName::Record nameRecord[R]; |
19 char data[D]; | 19 char data[D]; |
20 }; | 20 }; |
21 | 21 |
22 template <size_t R, size_t L, size_t D> struct Format1NameTable { | 22 template <size_t R, size_t L, size_t D> struct Format1NameTable { |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 } | 214 } |
215 } | 215 } |
216 } | 216 } |
217 | 217 |
218 DEFINE_bool(verboseFontNames, false, "verbose FontNames test."); | 218 DEFINE_bool(verboseFontNames, false, "verbose FontNames test."); |
219 | 219 |
220 DEF_TEST(FontNames, reporter) { | 220 DEF_TEST(FontNames, reporter) { |
221 test_synthetic(reporter, FLAGS_verboseFontNames); | 221 test_synthetic(reporter, FLAGS_verboseFontNames); |
222 test_systemfonts(reporter, FLAGS_verboseFontNames); | 222 test_systemfonts(reporter, FLAGS_verboseFontNames); |
223 } | 223 } |
OLD | NEW |