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

Unified Diff: recipe_modules/gclient/example.py

Issue 2318843002: Remove svn from gclient recipe module example (Closed)
Patch Set: Created 4 years, 3 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 | « recipe_modules/gclient/api.py ('k') | recipe_modules/gclient/example.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/gclient/example.py
diff --git a/recipe_modules/gclient/example.py b/recipe_modules/gclient/example.py
index 7da82ee422087b4dee973f85674df942ae551192..6614c67ef63162c9b9d06d32c90b4eee9298dfe8 100644
--- a/recipe_modules/gclient/example.py
+++ b/recipe_modules/gclient/example.py
@@ -70,15 +70,12 @@ def RunSteps(api):
api.gclient.c = src_cfg
api.gclient.checkout()
- api.gclient.spec_alias = 'WebKit'
+ api.gclient.spec_alias = 'Angle'
bl_cfg = api.gclient.make_config()
soln = bl_cfg.solutions.add()
- soln.name = 'WebKit'
- soln.url = 'svn://svn.chromium.org/blink/trunk'
- bl_cfg.revisions['third_party/WebKit'] = '123'
-
- # Use safesync url for lkgr.
- soln.safesync_url = 'https://blink-status.appspot.com/lkgr'
+ soln.name = 'Angle'
+ soln.url = 'https://chromium.googlesource.com/angle/angle.git'
+ bl_cfg.revisions['src/third_party/angle'] = 'refs/heads/lkgr'
bl_cfg.got_revision_mapping['src/blatley'] = 'got_blatley_revision'
api.gclient.checkout(
« no previous file with comments | « recipe_modules/gclient/api.py ('k') | recipe_modules/gclient/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698