1/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkTypes.h"
9#if defined(SK_BUILD_FOR_WIN32)  // And !SKIA_GDI?
10
11#include "SkFontMgr.h"
12#include "SkTypeface_win.h"
13
14sk_sp<SkFontMgr> SkFontMgr::Factory() {
15    return SkFontMgr_New_DirectWrite();
16}
17
18#endif//defined(SK_BUILD_FOR_WIN32)
19