| 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" | 8 #include "Test.h" |
| 9 #include "TestClassDef.h" | |
| 10 #include "SkCommandLineFlags.h" | 9 #include "SkCommandLineFlags.h" |
| 11 #include "SkFontMgr.h" | 10 #include "SkFontMgr.h" |
| 12 #include "SkOTTable_name.h" | 11 #include "SkOTTable_name.h" |
| 13 #include "SkTypeface.h" | 12 #include "SkTypeface.h" |
| 14 | 13 |
| 15 #include <stddef.h> | 14 #include <stddef.h> |
| 16 | 15 |
| 17 template <size_t R, size_t D> struct Format0NameTable { | 16 template <size_t R, size_t D> struct Format0NameTable { |
| 18 SkOTTableName header; | 17 SkOTTableName header; |
| 19 SkOTTableName::Record nameRecord[R]; | 18 SkOTTableName::Record nameRecord[R]; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 } | 214 } |
| 216 } | 215 } |
| 217 } | 216 } |
| 218 | 217 |
| 219 DEFINE_bool(verboseFontNames, false, "verbose FontNames test."); | 218 DEFINE_bool(verboseFontNames, false, "verbose FontNames test."); |
| 220 | 219 |
| 221 DEF_TEST(FontNames, reporter) { | 220 DEF_TEST(FontNames, reporter) { |
| 222 test_synthetic(reporter, FLAGS_verboseFontNames); | 221 test_synthetic(reporter, FLAGS_verboseFontNames); |
| 223 test_systemfonts(reporter, FLAGS_verboseFontNames); | 222 test_systemfonts(reporter, FLAGS_verboseFontNames); |
| 224 } | 223 } |
| OLD | NEW |