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

Unified Diff: svn_to_git_public.py

Issue 15970005: Remove mapping for iOS WebKit header repos (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/deps2git
Patch Set: Created 7 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 | « no previous file | 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
diff --git a/svn_to_git_public.py b/svn_to_git_public.py
index 25f546195dfe45d1a0b1111c7553e452d968124c..a2d215bbb25c7d51c4ee56ba599ece6989286925 100755
--- a/svn_to_git_public.py
+++ b/svn_to_git_public.py
@@ -129,18 +129,8 @@ def SvnUrlToGitUrl(path, svn_url):
if svn_url == BLINK_TRUNK:
return (path, GIT_HOST + 'chromium/blink.git')
- # Minimal header-only webkit directories for iOS.
- if svn_url == ('http://svn.webkit.org/repository/webkit/trunk/Source/' +
- 'WebKit/chromium/public'):
- return (path,
- GIT_HOST + 'external/WebKit/Source/WebKit/chromium/public.git')
- if svn_url == ('http://svn.webkit.org/repository/webkit/trunk/Source/' +
- 'Platform/chromium/public'):
- return (path,
- GIT_HOST + 'external/WebKit/Source/Platform/chromium/public.git')
-
- # Ignore all webkit directories (other than the above), since we fetch the
- # whole thing directly for all but iOS.
+ # Ignore all webkit directories, since we fetch the whole thing directly for
+ # all but iOS.
if svn_url == '/trunk/deps/third_party/WebKit':
return
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698