Lines Matching refs:relpath
70 return OperationResult(path=os.path.relpath(path, start=root),
84 return OperationResult(path=os.path.relpath(path, start=root),
129 relpath = os.path.relpath(filepath, start=root)
130 logging.info('[%d/%d] Checking %s', idx, num_total, relpath)
144 def _calculate_targets_for_file(relpath: str, arg_extra_targets: List[str],
146 if os.path.basename(relpath) != 'BUILD.gn':
150 dirpath = os.path.dirname(relpath)
230 relpath = os.path.relpath(filepath, start=root)
231 logging.info('[%d/%d] Checking %s', idx, num_total, relpath)
232 if relpath not in known_build_files:
234 path=relpath,
238 targets = _calculate_targets_for_file(relpath,
243 path=relpath,
384 build_filepaths = [os.path.relpath(args.file, root)]