diff options
author | mtklein <mtklein@chromium.org> | 2015-01-20 13:34:39 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-20 13:34:39 -0800 |
commit | 19f306013e2a88acb7f5c7322c6f751c8a74f6e4 (patch) | |
tree | 1f464592421f03d4ddcb13ad4507a8da1de8abca /dm | |
parent | 59c69479d44242350b303714a2cec8764c7f11a3 (diff) |
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
Diffstat (limited to 'dm')
-rw-r--r-- | dm/DM.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |