Lines Matching refs:dep
459 for dep in deps:
460 if dep.source_url.endswith('.git'):
462 logging.info('Downloading %s from %s', dep.target_platform,
463 dep.source_url)
466 DownloadURL(dep.source_url, f.name)
469 if (actual_checksum != dep.checksum):
471 dep.source_url, dep.checksum, actual_checksum))
500 for dep in deps:
503 matches_os = dep.target_os == 'all' or target_os == dep.target_os
504 matches_arch = dep.target_arch == 'all' or target_arch == dep.target_arch
507 if args.filter and args.filter not in dep.target_folder:
509 local_path = os.path.join(ROOT_DIR, dep.target_folder)
510 if dep.source_url.endswith('.git'):
511 deps_updated |= CheckoutGitRepo(local_path, dep.source_url, dep.checksum,
518 if ((not is_zip and HashLocalFile(local_path) == dep.checksum) or
519 (is_zip and ReadFile(zip_dir_stamp) == dep.checksum)):
524 MkdirRecursive(os.path.dirname(dep.target_folder))
525 if HashLocalFile(local_path) != dep.checksum:
527 logging.info('Downloading %s from %s', local_path, dep.source_url)
528 DownloadURL(dep.source_url, download_path)
531 if (actual_checksum != dep.checksum):
534 download_path, dep.checksum, actual_checksum))
537 if 'nodejs' in dep.target_folder:
540 assert (HashLocalFile(local_path) == dep.checksum)
568 stamp_file.write(dep.checksum)