| Index: slave/skia_slave_scripts/build_step.py
|
| diff --git a/slave/skia_slave_scripts/build_step.py b/slave/skia_slave_scripts/build_step.py
|
| index 5339a8520542b8601527c2f386bdc5ec5b095834..18a3ac354be4db1262aa28b2f357f2a01284d4b2 100644
|
| --- a/slave/skia_slave_scripts/build_step.py
|
| +++ b/slave/skia_slave_scripts/build_step.py
|
| @@ -202,7 +202,12 @@ class BuildStep(multiprocessing.Process):
|
| else args['perf_output_basedir'])
|
|
|
| self.skp_dir = self._local_playback_dirs.PlaybackSkpDir()
|
| - self.skp_out_dir = self._local_playback_dirs.PlaybackImageResultsDir()
|
| + self.playback_actual_images_dir = (
|
| + self._local_playback_dirs.PlaybackActualImagesDir())
|
| + self.playback_actual_summaries_dir = (
|
| + self._local_playback_dirs.PlaybackActualSummariesDir())
|
| + self.playback_expected_summaries_dir = (
|
| + self._local_playback_dirs.PlaybackExpectedSummariesDir())
|
|
|
| # Figure out where we are going to store performance related data.
|
| if args['perf_output_basedir'] != 'None':
|
|
|