OLD | NEW |
---|---|
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 """ Subclass for all slave-side ChromeOS build steps. """ | 5 """ Subclass for all slave-side ChromeOS build steps. """ |
6 | 6 |
7 | 7 |
8 from build_step import BuildStep, DeviceDirs | 8 from build_step import BuildStep, DeviceDirs |
9 from utils import gs_utils | 9 from utils import gs_utils |
10 from utils import ssh_utils | 10 from utils import ssh_utils |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 def __init__(self, args, **kwargs): | 72 def __init__(self, args, **kwargs): |
73 self._ssh_host = args['ssh_host'] | 73 self._ssh_host = args['ssh_host'] |
74 self._ssh_port = args['ssh_port'] | 74 self._ssh_port = args['ssh_port'] |
75 self._ssh_username = 'root' | 75 self._ssh_username = 'root' |
76 super(ChromeOSBuildStep, self).__init__(args=args, **kwargs) | 76 super(ChromeOSBuildStep, self).__init__(args=args, **kwargs) |
77 prefix = '/usr/local/skiabot/skia_' | 77 prefix = '/usr/local/skiabot/skia_' |
78 self._device_dirs = DeviceDirs(perf_data_dir=prefix + 'perf', | 78 self._device_dirs = DeviceDirs(perf_data_dir=prefix + 'perf', |
79 gm_actual_dir=prefix + 'gm_actual', | 79 gm_actual_dir=prefix + 'gm_actual', |
80 gm_expected_dir=prefix + 'gm_expected', | 80 gm_expected_dir=prefix + 'gm_expected', |
81 resource_dir=prefix + 'resources', | 81 resource_dir=prefix + 'resources', |
82 skimage_in_dir=prefix + 'skimage_in', | |
83 skimage_expected_dir=prefix + 'skimage_expect ed', | |
borenet
2013/06/25 18:19:12
Nit: 80 chars
scroggo
2013/06/25 19:28:56
Done.
| |
84 skimage_out_dir=prefix + 'skimage_out', | |
82 skp_dir=prefix + 'skp', | 85 skp_dir=prefix + 'skp', |
83 skp_perf_dir=prefix + 'skp_perf', | 86 skp_perf_dir=prefix + 'skp_perf', |
84 skp_out_dir=prefix + 'skp_out', | 87 skp_out_dir=prefix + 'skp_out', |
85 tmp_dir=prefix + 'tmp_dir') | 88 tmp_dir=prefix + 'tmp_dir') |
OLD | NEW |