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

Unified Diff: tools/dartium/update_deps.py

Issue 1577173002: Update update_deps.py to use https as it is now required. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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: tools/dartium/update_deps.py
diff --git a/tools/dartium/update_deps.py b/tools/dartium/update_deps.py
index a8b1b4be880f4a92acf3c01b660cb9b1d86ca2a8..6e274379de43ad3658331f78197c5652512661a3 100755
--- a/tools/dartium/update_deps.py
+++ b/tools/dartium/update_deps.py
@@ -79,14 +79,14 @@ TARGETS = {
# used to generated the commit message.
REPOSITORY_INFO = {
'webkit': (
- 'http://src.chromium.org/blink/branches/%s',
- 'http://src.chromium.org/viewvc/blink?view=rev&revision=%s'),
+ 'https://src.chromium.org/blink/branches/%s',
+ 'https://src.chromium.org/viewvc/blink?view=rev&revision=%s'),
'blink': (
- 'http://src.chromium.org/blink/branches/%s',
- 'http://src.chromium.org/viewvc/blink?view=rev&revision=%s'),
+ 'https://src.chromium.org/blink/branches/%s',
+ 'https://src.chromium.org/viewvc/blink?view=rev&revision=%s'),
'chromium': (
- 'http://src.chromium.org/chrome/branches/%s',
- 'http://src.chromium.org/viewvc/chrome?view=rev&revision=%s'),
+ 'https://src.chromium.org/chrome/branches/%s',
+ 'https://src.chromium.org/viewvc/chrome?view=rev&revision=%s'),
}
REPOSITORIES = REPOSITORY_INFO.keys()
« 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