Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: svn_to_git_public.py

Issue 190853003: Remove special case svn to git translations for FFmpeg. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/deps2git/
Patch Set: Rebase. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « deps_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: svn_to_git_public.py
===================================================================
--- svn_to_git_public.py (revision 270250)
+++ svn_to_git_public.py (working copy)
@@ -15,15 +15,7 @@
BLINK_TRUNK_PUBLIC_RE = re.compile(
'^https?://src.chromium.org/blink/trunk/public$')
-# Used by deps2git.ConvertDepsToGit() as overrides for SVN DEPS. Each entry
-# maps a DEPS path to a DEPS variable identifying the Git hash for its
-# respective repository. Variables are automatically transferred from SVN DEPS
-# to .DEPS.git and converted into variables by deps_utils.Varify().
-DEPS_OVERRIDES = {
- 'src/third_party/ffmpeg': 'ffmpeg_hash'
-}
-
def SvnUrlToGitUrl(path, svn_url):
"""Convert a chromium SVN URL to a chromium Git URL."""
@@ -66,9 +58,6 @@
if svn_url == 'svn://svn.chromium.org/jsoncpp/trunk/jsoncpp':
return (path, GIT_HOST + 'external/jsoncpp/jsoncpp.git', GIT_HOST)
- if svn_url == '/trunk/deps/third_party/ffmpeg':
- return (path, GIT_HOST + 'chromium/third_party/ffmpeg.git', GIT_HOST)
-
if svn_url == '/trunk/deps/cdm':
return (path, GIT_HOST + 'chromium/cdm.git', GIT_HOST)
« no previous file with comments | « deps_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698