Lines Matching full:revision
82 DepsEntry = collections.namedtuple('DepsEntry', 'path url revision')
188 def ReadRemoteCrFile(path_below_src, revision): argument
189 """Reads a remote Chromium file of a specific revision. Returns a string."""
190 return _ReadGitilesContent(CHROMIUM_FILE_TEMPLATE % (revision, path_below_src))
193 def ReadRemoteCrCommit(revision): argument
195 return _ReadGitilesContent(CHROMIUM_COMMIT_TEMPLATE % revision)
248 url, revision = dep['url'].split('@')
249 result[path] = DepsEntry(path, url, revision)
281 revision as Chromium (i.e. entry in the new_cr_deps dict)
282 - If it's a Chromium sub-directory, roll it to the HEAD revision (notice
319 # Use the revision from Chromium's DEPS file.
320 new_rev = cr_deps_entry.revision
335 if angle_deps_entry.revision != new_rev:
338 ChangedDep(path, ChromeURL(angle_deps_entry), angle_deps_entry.revision, new_rev))
349 raise RollError('Could not parse Clang revision!')
418 """Update the DEPS file with the new revision."""
448 _RunCommand([gclient_cmd, 'setdep', '--revision', update], working_dir=CHECKOUT_SRC_DIR)
529 new_cr_rev = opts.revision
533 logging.info('No revision specified. Using HEAD: %s', head_rev)
548 '--revision',
549 help=('Chromium Git revision to roll to. Defaults to the '
550 'Chromium HEAD revision if omitted.'))
575 help=('Commit queue dry run if the revision difference '