DM: disable image src type on Windows.

BUG=skia:

Review URL: https://codereview.chromium.org/1012183002
diff --git a/tools/dm_flags.json b/tools/dm_flags.json
index 7c14ec2..6782a14 100644
--- a/tools/dm_flags.json
+++ b/tools/dm_flags.json
@@ -259,6 +259,12 @@
     "PANO_20121023_214540.jpg", 
     "msaa", 
     "_", 
-    "PANO_20121023_214540.jpg"
+    "PANO_20121023_214540.jpg", 
+    "_", 
+    "image", 
+    "_", 
+    "_", 
+    "subset", 
+    "_"
   ]
 }
\ No newline at end of file
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 9e19e34..2472992 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -51,6 +51,11 @@
   blacklist.extend('gpu _ PANO_20121023_214540.jpg'.split(' '))
   blacklist.extend('msaa _ PANO_20121023_214540.jpg'.split(' '))
 
+  # Leon doesn't care about this, so why run it?
+  if 'Win' in bot:
+    blacklist.extend('_ image _'.split(' '))
+    blacklist.extend('_ subset _'.split(' '))
+
   # Drawing SKPs or images into GPU canvases is a New Thing.
   # It seems like we're running out of RAM on some Android bots, so start off
   # with a very wide blacklist disabling all these tests on all Android bots.