aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-11-13 12:40:46 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-13 18:47:11 +0000
commit0c5fdcb18986b46ddad48f4157570c4ead4fe54a (patch)
treecd0ed911d743e8a5ea92239c979e6dae1a48becb /src
parent4c723832df5d1a1368c996d8f8349becd395ad90 (diff)
streamline GDI bots
- Replace build-time GDI support in all of Skia with run-time GDI support only in DM. - Make the GDI bots NativeFont bots paralelling the other NativeFonts bots. Change-Id: I424b20f6983d8a8ba8574650efefea2b8776bbe2 Reviewed-on: https://skia-review.googlesource.com/70721 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/ports/SkFontMgr_win_gdi_factory.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/ports/SkFontMgr_win_gdi_factory.cpp b/src/ports/SkFontMgr_win_gdi_factory.cpp
deleted file mode 100644
index 6015794bbc..0000000000
--- a/src/ports/SkFontMgr_win_gdi_factory.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright 2015 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkTypes.h"
-#if defined(SK_BUILD_FOR_WIN32) // And SKIA_GDI?
-
-#include "SkFontMgr.h"
-#include "SkTypeface_win.h"
-
-sk_sp<SkFontMgr> SkFontMgr::Factory() {
- return SkFontMgr_New_GDI();
-}
-
-#endif//defined(SK_BUILD_FOR_WIN32)