Index: tools/dm_flags.py |
diff --git a/tools/dm_flags.py b/tools/dm_flags.py |
index f05bb22416e0aa67d407b59b753f89309bc07391..268e61c1d97d66397dc6e2249a9510538592bc11 100755 |
--- a/tools/dm_flags.py |
+++ b/tools/dm_flags.py |
@@ -1,3 +1,10 @@ |
+# |
+# Copyright 2015 Google Inc. |
+# |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+# |
+ |
#!/usr/bin/env python |
usage = ''' |
@@ -51,6 +58,26 @@ def get_args(bot): |
blacklist.extend('gpu _ PANO_20121023_214540.jpg'.split(' ')) |
blacklist.extend('msaa _ PANO_20121023_214540.jpg'.split(' ')) |
+ # Several of the newest version bmps fail on SkImageDecoder |
+ blacklist.extend('_ image pal8os2v2.bmp'.split(' ')) |
+ blacklist.extend('_ image pal8v4.bmp'.split(' ')) |
+ blacklist.extend('_ image pal8v5.bmp'.split(' ')) |
+ blacklist.extend('_ image rgb16-565.bmp'.split(' ')) |
+ blacklist.extend('_ image rgb16-565pal.bmp'.split(' ')) |
+ blacklist.extend('_ image rgb32-111110.bmp'.split(' ')) |
+ blacklist.extend('_ image rgb32bf.bmp'.split(' ')) |
+ blacklist.extend('_ image rgba32.bmp'.split(' ')) |
+ blacklist.extend('_ image rgba32abf.bmp'.split(' ')) |
+ blacklist.extend('_ image rgb24largepal.bmp'.split(' ')) |
+ blacklist.extend('_ image pal8os2v2-16.bmp'.split(' ')) |
+ blacklist.extend('_ image pal8oversizepal.bmp'.split(' ')) |
+ blacklist.extend('_ subset rgb24largepal.bmp'.split(' ')) |
+ blacklist.extend('_ subset pal8os2v2-16.bmp'.split(' ')) |
+ blacklist.extend('_ subset pal8oversizepal.bmp'.split(' ')) |
+ |
+ # New ico files that fail on SkImageDecoder |
scroggo
2015/03/25 18:51:47
FYI: Other (I assume there are others) new ico fil
|
+ blacklist.extend('_ image Hopstarter-Mac-Folders-Apple.ico'.split(' ')) |
+ |
# Leon doesn't care about this, so why run it? |
if 'Win' in bot: |
blacklist.extend('_ image _'.split(' ')) |