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

Side by Side Diff: tools/dm_flags.py

Issue 1865143002: Fix lazy coding in ViaSingletonPictures. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: cast Created 4 years, 8 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'fontmgr_iter', 169 'fontmgr_iter',
170 'lightingshader', 170 'lightingshader',
171 'verylargebitmap', # Windows only. 171 'verylargebitmap', # Windows only.
172 'verylarge_picture_image']: # Windows only. 172 'verylarge_picture_image']: # Windows only.
173 blacklist.extend(['serialize-8888', 'gm', '_', test]) 173 blacklist.extend(['serialize-8888', 'gm', '_', test])
174 # skia:4769 174 # skia:4769
175 for test in ['drawfilter']: 175 for test in ['drawfilter']:
176 blacklist.extend([ 'sp-8888', 'gm', '_', test]) 176 blacklist.extend([ 'sp-8888', 'gm', '_', test])
177 blacklist.extend([ 'pic-8888', 'gm', '_', test]) 177 blacklist.extend([ 'pic-8888', 'gm', '_', test])
178 blacklist.extend(['2ndpic-8888', 'gm', '_', test]) 178 blacklist.extend(['2ndpic-8888', 'gm', '_', test])
179 for test in ['patch_primitive']:
180 blacklist.extend(['sp-8888', 'gm', '_', test])
181 # skia:4703 179 # skia:4703
182 for test in ['image-cacherator-from-picture', 180 for test in ['image-cacherator-from-picture',
183 'image-cacherator-from-raster', 181 'image-cacherator-from-raster',
184 'image-cacherator-from-ctable']: 182 'image-cacherator-from-ctable']:
185 blacklist.extend([ 'sp-8888', 'gm', '_', test]) 183 blacklist.extend([ 'sp-8888', 'gm', '_', test])
186 blacklist.extend([ 'pic-8888', 'gm', '_', test]) 184 blacklist.extend([ 'pic-8888', 'gm', '_', test])
187 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) 185 blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
188 blacklist.extend(['serialize-8888', 'gm', '_', test]) 186 blacklist.extend(['serialize-8888', 'gm', '_', test])
189 187
190 # Extensions for RAW images 188 # Extensions for RAW images
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 if len(sys.argv) == 2 and sys.argv[1] == 'test': 289 if len(sys.argv) == 2 and sys.argv[1] == 'test':
292 self_test() 290 self_test()
293 sys.exit(0) 291 sys.exit(0)
294 292
295 if len(sys.argv) != 3: 293 if len(sys.argv) != 3:
296 print usage 294 print usage
297 sys.exit(1) 295 sys.exit(1)
298 296
299 with open(sys.argv[1], 'w') as out: 297 with open(sys.argv[1], 'w') as out:
300 json.dump(get_args(sys.argv[2]), out) 298 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