Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1975)

Unified Diff: tools/dm_flags.py

Issue 1011343003: Enabling ico decoding with use of png and bmp decoders (Closed) Base URL: https://skia.googlesource.com/skia.git@swizzle
Patch Set: Updated blacklist Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/codec/SkCodec.cpp ('K') | « src/codec/SkCodec_libpng.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dm_flags.py
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index f05bb22416e0aa67d407b59b753f89309bc07391..83e4ea2103abb222ea53716955a0cfbfebc55476 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -51,6 +51,23 @@ 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(' '))
scroggo 2015/03/24 15:24:42 Do we also need to blacklist "subset" for these im
msarett 2015/03/24 16:55:07 Most of them "fail" by creating an image that does
+ 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(' '))
+
+ # New ico files that fail on SkImageDecoder
+ 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(' '))
« src/codec/SkCodec.cpp ('K') | « src/codec/SkCodec_libpng.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698