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

Side by Side Diff: slave/skia_slave_scripts/flavor_utils/default_build_step_utils.py

Issue 344183004: Use new common utils where possible. (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: rebase Created 6 years, 5 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """ Utilities for generic build steps. """ 5 """ Utilities for generic build steps. """
6 6
7 import os 7 import os
8 import shutil 8 import shutil
9 import sys 9 import sys
10 10
11 from utils import file_utils 11 from utils import file_utils
12 from utils import shell_utils 12 from py.utils import shell_utils
13 13
14 14
15 class DeviceDirs(object): 15 class DeviceDirs(object):
16 def __init__(self, perf_data_dir, gm_actual_dir, gm_expected_dir, 16 def __init__(self, perf_data_dir, gm_actual_dir, gm_expected_dir,
17 resource_dir, skimage_in_dir, skimage_expected_dir, 17 resource_dir, skimage_in_dir, skimage_expected_dir,
18 skimage_out_dir, skp_dir, skp_perf_dir, 18 skimage_out_dir, skp_dir, skp_perf_dir,
19 playback_actual_images_dir, playback_actual_summaries_dir, 19 playback_actual_images_dir, playback_actual_summaries_dir,
20 playback_expected_summaries_dir, tmp_dir): 20 playback_expected_summaries_dir, tmp_dir):
21 self._perf_data_dir = perf_data_dir 21 self._perf_data_dir = perf_data_dir
22 self._gm_actual_dir = gm_actual_dir 22 self._gm_actual_dir = gm_actual_dir
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 skimage_expected_dir=os.path.join(os.pardir, os.pardir, 'skimage', 245 skimage_expected_dir=os.path.join(os.pardir, os.pardir, 'skimage',
246 'expected'), 246 'expected'),
247 skimage_out_dir=self._step.skimage_out_dir, 247 skimage_out_dir=self._step.skimage_out_dir,
248 skp_dir=self._step.skp_dir, 248 skp_dir=self._step.skp_dir,
249 skp_perf_dir=self._step.perf_data_dir, 249 skp_perf_dir=self._step.perf_data_dir,
250 playback_actual_images_dir=self._step.playback_actual_images_dir, 250 playback_actual_images_dir=self._step.playback_actual_images_dir,
251 playback_actual_summaries_dir=self._step.playback_actual_summaries_dir, 251 playback_actual_summaries_dir=self._step.playback_actual_summaries_dir,
252 playback_expected_summaries_dir=( 252 playback_expected_summaries_dir=(
253 self._step.playback_expected_summaries_dir), 253 self._step.playback_expected_summaries_dir),
254 tmp_dir=os.path.join(os.pardir, 'tmp')) 254 tmp_dir=os.path.join(os.pardir, 'tmp'))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698