From 2ff47c2390814df165234ab16b83dbacf97f1c0f Mon Sep 17 00:00:00 2001 From: mtklein Date: Wed, 24 Aug 2016 10:27:13 -0700 Subject: [PATCH] GN: Fuchsia probably cannot link without this. We removed this _none variant globally, thinking we'd put back platform specific versions as we added support for those platforms. We don't have anything for Fuchsia. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2271273002 Review-Url: https://codereview.chromium.org/2271273002 --- BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 49e3e50d28..c1aed787a5 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -428,7 +428,10 @@ component("skia") { } if (is_fuchsia) { - sources += [ "src/ports/SkFontMgr_empty_factory.cpp" ] + sources += [ + "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", + "src/ports/SkFontMgr_empty_factory.cpp", + ] } }