From 19f306013e2a88acb7f5c7322c6f751c8a74f6e4 Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 20 Jan 2015 13:34:39 -0800 Subject: [PATCH] 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 --- dm/DM.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.7.4