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

Unified Diff: svn_to_git_public.py

Issue 15936006: Add blink header-only repo mapping for iOS (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 f9bbc63ed9acab92b6d3d69a78e64ada437a6439..25f546195dfe45d1a0b1111c7553e452d968124c 100755
--- a/svn_to_git_public.py
+++ b/svn_to_git_public.py
@@ -121,6 +121,10 @@ def SvnUrlToGitUrl(path, svn_url):
repo = '%s.git' % match.group(1)
return (path, GIT_HOST + 'chromium/%s' % repo)
+ # Public-header-only blink directory for iOS.
+ if svn_url == (BLINK_TRUNK + '/public'):
+ return (path, GIT_HOST + 'chromium/blink-public.git')
+
# Main blink directory.
if svn_url == BLINK_TRUNK:
return (path, GIT_HOST + 'chromium/blink.git')
« 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