Index: dm/DM.cpp |
diff --git a/dm/DM.cpp b/dm/DM.cpp |
index bf80c863ba6b2238107dfef3d9d938bf75ea48af..5dd8a6f63e96a28387e78ebbd445006ec0dabce3 100644 |
--- a/dm/DM.cpp |
+++ b/dm/DM.cpp |
@@ -879,6 +879,7 @@ static Sink* create_sink(const SkCommandLineConfig* config) { |
static Sink* create_via(const SkString& tag, Sink* wrapped) { |
#define VIA(t, via, ...) if (tag.equals(t)) { return new via(__VA_ARGS__); } |
+ VIA("lite", ViaLite, wrapped); |
VIA("twice", ViaTwice, wrapped); |
VIA("serialize", ViaSerialization, wrapped); |
VIA("pic", ViaPicture, wrapped); |