OLD | NEW |
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'c_gms', | 160 'c_gms', |
161 'colortype', | 161 'colortype', |
162 'colortype_xfermodes', | 162 'colortype_xfermodes', |
163 'colorwheelnative', | 163 'colorwheelnative', |
164 'drawfilter', | 164 'drawfilter', |
165 'fontmgr_bounds_0.75_0', | 165 'fontmgr_bounds_0.75_0', |
166 'fontmgr_bounds_1_-0.25', | 166 'fontmgr_bounds_1_-0.25', |
167 'fontmgr_bounds', | 167 'fontmgr_bounds', |
168 'fontmgr_match', | 168 'fontmgr_match', |
169 'fontmgr_iter', | 169 'fontmgr_iter', |
170 'lightingshader', | |
171 'verylargebitmap', # Windows only. | 170 'verylargebitmap', # Windows only. |
172 'verylarge_picture_image']: # Windows only. | 171 'verylarge_picture_image']: # Windows only. |
173 blacklist.extend(['serialize-8888', 'gm', '_', test]) | 172 blacklist.extend(['serialize-8888', 'gm', '_', test]) |
174 # skia:4769 | 173 # skia:4769 |
175 for test in ['drawfilter']: | 174 for test in ['drawfilter']: |
176 blacklist.extend([ 'sp-8888', 'gm', '_', test]) | 175 blacklist.extend([ 'sp-8888', 'gm', '_', test]) |
177 blacklist.extend([ 'pic-8888', 'gm', '_', test]) | 176 blacklist.extend([ 'pic-8888', 'gm', '_', test]) |
178 blacklist.extend(['2ndpic-8888', 'gm', '_', test]) | 177 blacklist.extend(['2ndpic-8888', 'gm', '_', test]) |
179 # skia:4703 | 178 # skia:4703 |
180 for test in ['image-cacherator-from-picture', | 179 for test in ['image-cacherator-from-picture', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 288 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
290 self_test() | 289 self_test() |
291 sys.exit(0) | 290 sys.exit(0) |
292 | 291 |
293 if len(sys.argv) != 3: | 292 if len(sys.argv) != 3: |
294 print usage | 293 print usage |
295 sys.exit(1) | 294 sys.exit(1) |
296 | 295 |
297 with open(sys.argv[1], 'w') as out: | 296 with open(sys.argv[1], 'w') as out: |
298 json.dump(get_args(sys.argv[2]), out) | 297 json.dump(get_args(sys.argv[2]), out) |
OLD | NEW |