• Home
  • Raw
  • Download

Lines Matching refs:join

77 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join(
83 CREDENTIALS_FILE_PATH = os.path.join(
112 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets')
149 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path,
166 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path,
168 self._catapult_dir = os.path.join(parse_options.chrome_src_path,
171 self._local_skp_dir = os.path.join(
173 self._local_record_webpages_archive_dir = os.path.join(
184 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)),
186 ps = [os.path.join(page_sets_dir, page_set)
188 if not os.path.isdir(os.path.join(page_sets_dir, page_set)) and
191 os.path.join(self._chrome_page_sets_path, cr_page_set)
226 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, 'skia_*')):
253 os.path.join(self._telemetry_binaries_dir, 'record_wpr'),
262 subprocess.check_call(' '.join(record_wpr_cmd), shell=True)
266 for wpr_data_file in glob.glob(os.path.join(
269 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, wpr_data_file),
272 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
294 os.path.join(self._telemetry_binaries_dir, 'run_benchmark'),
312 subprocess.check_call(' '.join(run_benchmark_cmd), shell=True)
342 os.path.join(self._skia_tools, 'render_pictures'),
346 os.path.join(self._skia_tools, 'render_pdfs'),
351 print('\n\n=======Running %s=======' % ' '.join(tools_cmd))
356 os.system('%s %s' % (os.path.join(self._skia_tools, 'debugger'),
372 posixpath.join(self.gs.target_name(), dest_dir_name,
384 upload_dir = posixpath.join(SKPICTURES_DIR_NAME, timestamp)
392 posixpath.join(partner_gs.target_name(), upload_dir))
431 subdirs = glob.glob(os.path.join(TMP_SKP_DIR, '*'))
443 largest_skp = max(glob.glob(os.path.join(site, '*.skp')),
445 dest = os.path.join(self._local_skp_dir, filename)
466 wpr_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME, 'webpages_archive',
468 page_set_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME,
476 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
510 'gsutil', 'ls', '/'.join((self._url, name))])
518 subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))])
522 'gsutil', 'cp', '/'.join((self._url, name)), local_path])
526 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
537 return os.path.isfile(os.path.join(self._base_dir, name))
541 shutil.copyfile(os.path.join(self._base_dir, name), local_path)
547 source = os.path.join(source_dir, item)
548 dest = os.path.join(dest_dir, item)
553 copytree(source_dir, os.path.join(self._base_dir, dest_dir))