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

Side by Side Diff: tools/dm_flags.py

Issue 2050423003: Skip verylargebitmap serialization on Android too (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright 2015 Google Inc. 2 # Copyright 2015 Google Inc.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 # 6 #
7 7
8 #!/usr/bin/env python 8 #!/usr/bin/env python
9 9
10 usage = ''' 10 usage = '''
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'drawfilter', 170 'drawfilter',
171 'fontmgr_bounds_0.75_0', 171 'fontmgr_bounds_0.75_0',
172 'fontmgr_bounds_1_-0.25', 172 'fontmgr_bounds_1_-0.25',
173 'fontmgr_bounds', 173 'fontmgr_bounds',
174 'fontmgr_match', 174 'fontmgr_match',
175 'fontmgr_iter']: 175 'fontmgr_iter']:
176 blacklist.extend(['serialize-8888', 'gm', '_', test]) 176 blacklist.extend(['serialize-8888', 'gm', '_', test])
177 if 'Mac' not in bot: 177 if 'Mac' not in bot:
178 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: 178 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']:
179 blacklist.extend(['serialize-8888', 'gm', '_', test]) 179 blacklist.extend(['serialize-8888', 'gm', '_', test])
180 if 'Win' in bot: 180 # It looks like we skip these only for out-of-memory concerns.
181 if 'Win' in bot or 'Android' in bot:
181 for test in ['verylargebitmap', 'verylarge_picture_image']: 182 for test in ['verylargebitmap', 'verylarge_picture_image']:
182 blacklist.extend(['serialize-8888', 'gm', '_', test]) 183 blacklist.extend(['serialize-8888', 'gm', '_', test])
183 184
184 # skia:4769 185 # skia:4769
185 for test in ['drawfilter']: 186 for test in ['drawfilter']:
186 blacklist.extend([ 'sp-8888', 'gm', '_', test]) 187 blacklist.extend([ 'sp-8888', 'gm', '_', test])
187 blacklist.extend([ 'pic-8888', 'gm', '_', test]) 188 blacklist.extend([ 'pic-8888', 'gm', '_', test])
188 blacklist.extend(['2ndpic-8888', 'gm', '_', test]) 189 blacklist.extend(['2ndpic-8888', 'gm', '_', test])
189 # skia:4703 190 # skia:4703
190 for test in ['image-cacherator-from-picture', 191 for test in ['image-cacherator-from-picture',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 if len(sys.argv) == 2 and sys.argv[1] == 'test': 307 if len(sys.argv) == 2 and sys.argv[1] == 'test':
307 self_test() 308 self_test()
308 sys.exit(0) 309 sys.exit(0)
309 310
310 if len(sys.argv) != 3: 311 if len(sys.argv) != 3:
311 print usage 312 print usage
312 sys.exit(1) 313 sys.exit(1)
313 314
314 with open(sys.argv[1], 'w') as out: 315 with open(sys.argv[1], 'w') as out:
315 json.dump(get_args(sys.argv[2]), out) 316 json.dump(get_args(sys.argv[2]), out)
OLDNEW
« 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