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

Unified Diff: tools/dm_flags.py

Issue 1011653004: Fix android_run_skia script to allow for larger blacklist (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Adding dm_flags.json 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
« no previous file with comments | « tools/dm_flags.json ('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..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(' '))
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698