D | check_source_files_in_bazel_build.py | 17 from pathlib import Path 66 def get_paths_from_command(source_dir: Path, *args, **kwargs) -> Set[Path]: argument 87 path = line.strip().lstrip(b"/").replace(b":", b"/").decode() 88 files.add(Path(path)) 95 files: Iterable[Path], argument 96 bazel_dirs: Iterable[Path], argument 97 picotool_dir: Optional[Path], argument 98 ) -> List[Path]: 111 bazel_build_source_files: Set[Path] = set() 119 missing_from_bazel: List[Path] = [] [all …]
|