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

Side by Side Diff: slave/skia_slave_scripts/render_pictures.py

Issue 15145004: Run render_pictures with deferred image decoding on bots. (Closed) Base URL: https://skia.googlecode.com/svn/buildbot
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ Run the Skia render_pictures executable. """ 6 """ Run the Skia render_pictures executable. """
7 7
8 from build_step import BuildStep 8 from build_step import BuildStep
9 import os 9 import os
10 import sys 10 import sys
(...skipping 19 matching lines...) Expand all
30 cmd.extend(['-w', self._device_dirs.SKPOutDir()]) 30 cmd.extend(['-w', self._device_dirs.SKPOutDir()])
31 if not os.name == 'nt': 31 if not os.name == 'nt':
32 cmd.append('--validate') 32 cmd.append('--validate')
33 self.RunFlavoredCmd('render_pictures', cmd) 33 self.RunFlavoredCmd('render_pictures', cmd)
34 34
35 def _Run(self): 35 def _Run(self):
36 self.DoRenderPictures([]) 36 self.DoRenderPictures([])
37 self.DoRenderPictures(['--bbh', 'grid', str(DEFAULT_TILE_X), 37 self.DoRenderPictures(['--bbh', 'grid', str(DEFAULT_TILE_X),
38 str(DEFAULT_TILE_X), '--clone', '1']) 38 str(DEFAULT_TILE_X), '--clone', '1'])
39 self.DoRenderPictures(['--bbh', 'rtree', '--clone', '2']) 39 self.DoRenderPictures(['--bbh', 'rtree', '--clone', '2'])
40 self.DoRenderPictures(['--deferImageDecoding', '--useVolatileCache'])
40 41
41 42
42 if '__main__' == __name__: 43 if '__main__' == __name__:
43 sys.exit(BuildStep.RunBuildStep(RenderPictures)) 44 sys.exit(BuildStep.RunBuildStep(RenderPictures))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698