Lines Matching refs:deps
56 """Parses the .DEPS.git file from Chromium and returns its contents.
59 deps_content: The contents of the .DEPS.git file as text.
61 A dictionary of the contents of .DEPS.git at the specified revision
94 """Gets the git URL and SHA1 for each project based on .DEPS.git.
98 deps_vars: The dictionary of dependencies from .DEPS.git.
102 TemporaryMergeError: if a project to be merged is not found in .DEPS.git.
105 deps_vars['deps'],
111 for deps in deps_fallback_order:
116 url_plus_sha1 = deps.get(upstream_path)
121 'Could not find .DEPS.git entry for project %s. This probably '
135 .DEPS.git is consulted to determine which revision each project must be merged
156 logging.debug('Parsing DEPS ...')
158 deps_content = _ReadGitFile(root_sha1, '.DEPS.git')
160 deps_content = _ReadGitFile('FETCH_HEAD', version + '/DEPS',