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

Side by Side Diff: buildbot/slave/skia_slave_scripts/postrender.py

Issue 23120002: Remove base-* directories from gm expected/actual paths; just use platform names (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: apply_comments_from_patchset5 Created 7 years, 4 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 """ Step to run after the render steps. """ 6 """ Step to run after the render steps. """
7 7
8 from build_step import BuildStep 8 from build_step import BuildStep
9 import sys 9 import sys
10 10
11 11
12 class PostRender(BuildStep): 12 class PostRender(BuildStep):
13 def _Run(self): 13 def _Run(self):
14 self._flavor_utils.CopyDirectoryContentsToHost( 14 self._flavor_utils.CopyDirectoryContentsToHost(
15 self._flavor_utils.DevicePathJoin(self._device_dirs.GMActualDir(), 15 self._flavor_utils.DevicePathJoin(self._device_dirs.GMActualDir(),
16 self._gm_image_subdir), 16 self._builder_name),
17 self._gm_actual_dir) 17 self._gm_actual_dir)
18 self._flavor_utils.CopyDirectoryContentsToHost( 18 self._flavor_utils.CopyDirectoryContentsToHost(
19 self._device_dirs.SKPOutDir(), 19 self._device_dirs.SKPOutDir(),
20 self._local_playback_dirs.PlaybackGmActualDir()) 20 self._local_playback_dirs.PlaybackGmActualDir())
21 self._flavor_utils.CopyDirectoryContentsToHost( 21 self._flavor_utils.CopyDirectoryContentsToHost(
22 self._device_dirs.SKImageOutDir(), self._skimage_out_dir) 22 self._device_dirs.SKImageOutDir(), self._skimage_out_dir)
23 23
24 24
25 if '__main__' == __name__: 25 if '__main__' == __name__:
26 sys.exit(BuildStep.RunBuildStep(PostRender)) 26 sys.exit(BuildStep.RunBuildStep(PostRender))
OLDNEW
« no previous file with comments | « buildbot/slave/skia_slave_scripts/build_step.py ('k') | buildbot/slave/skia_slave_scripts/prerender.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698