Returns a relative path from the top of the repo.
(self, path)
| 994 | *comps) |
| 995 | |
| 996 | def ToSrcRelPath(self, path): |
| 997 | """Returns a relative path from the top of the repo.""" |
| 998 | if path.startswith('//'): |
| 999 | return path[2:].replace('/', self.sep) |
| 1000 | return self.RelPath(path, self.chromium_src_dir) |
| 1001 | |
| 1002 | def RunGNAnalyze(self, vals): |
| 1003 | # Analyze runs before 'gn gen' now, so we need to run gn gen |
no test coverage detected