From: mtklein Date: Tue, 20 Jan 2015 21:34:39 +0000 (-0800) Subject: Allow pdf as a --config. X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~3996 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19f306013e2a88acb7f5c7322c6f751c8a74f6e4;p=platform%2Fupstream%2FlibSkiaSharp.git Allow pdf as a --config. We just can't run this on the bots yet. It's fine locally. BUG=skia:3255 Review URL: https://codereview.chromium.org/857373002 --- diff --git a/dm/DM.cpp b/dm/DM.cpp index 1f0145e..da9dc2c 100644 --- a/dm/DM.cpp +++ b/dm/DM.cpp @@ -164,8 +164,7 @@ static Sink* create_sink(const char* tag) { if (FLAGS_cpu) { SINK("565", RasterSink, kRGB_565_SkColorType); SINK("8888", RasterSink, kN32_SkColorType); - // TODO(mtklein): reenable once skiagold can handle .pdf uploads. - //SINK("pdf", PDFSink); + SINK("pdf", PDFSink); } #undef SINK return NULL;