Lines Matching refs:join
75 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join(
81 CREDENTIALS_FILE_PATH = os.path.join(
110 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets')
147 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path,
164 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path,
166 self._catapult_dir = os.path.join(parse_options.chrome_src_path,
169 self._local_skp_dir = os.path.join(
171 self._local_record_webpages_archive_dir = os.path.join(
182 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)),
184 ps = [os.path.join(page_sets_dir, page_set)
186 if not os.path.isdir(os.path.join(page_sets_dir, page_set)) and
189 os.path.join(self._chrome_page_sets_path, cr_page_set)
224 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, 'skia_*')):
251 os.path.join(self._telemetry_binaries_dir, 'record_wpr'),
260 subprocess.check_call(' '.join(record_wpr_cmd), shell=True)
264 for wpr_data_file in glob.glob(os.path.join(
267 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, wpr_data_file),
270 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
292 os.path.join(self._telemetry_binaries_dir, 'run_benchmark'),
310 subprocess.check_call(' '.join(run_benchmark_cmd), shell=True)
340 os.path.join(self._skia_tools, 'render_pictures'),
344 os.path.join(self._skia_tools, 'render_pdfs'),
349 print '\n\n=======Running %s=======' % ' '.join(tools_cmd)
354 os.system('%s %s' % (os.path.join(self._skia_tools, 'debugger'),
370 posixpath.join(self.gs.target_name(), dest_dir_name,
383 upload_dir = posixpath.join(SKPICTURES_DIR_NAME, timestamp)
391 posixpath.join(partner_gs.target_name(), upload_dir))
430 subdirs = glob.glob(os.path.join(TMP_SKP_DIR, '*'))
442 largest_skp = max(glob.glob(os.path.join(site, '*.skp')),
444 dest = os.path.join(self._local_skp_dir, filename)
465 wpr_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME, 'webpages_archive',
467 page_set_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME,
475 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
509 'gsutil', 'ls', '/'.join((self._url, name))])
517 subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))])
521 'gsutil', 'cp', '/'.join((self._url, name)), local_path])
525 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
536 return os.path.isfile(os.path.join(self._base_dir, name))
540 shutil.copyfile(os.path.join(self._base_dir, name), local_path)
546 source = os.path.join(source_dir, item)
547 dest = os.path.join(dest_dir, item)
552 copytree(source_dir, os.path.join(self._base_dir, dest_dir))