From 62e5af442509cdd53f7b0004df00847db0018d82 Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Tue, 20 Aug 2013 09:19:16 +0000 Subject: [PATCH] Use a sourceforge_url for jsoncpp in DEPS. BUG= R=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2069004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4571 4adac7df-926f-26a2-2b94-8c16560cd09d --- DEPS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 27afcf2e08..8da3f9db13 100644 --- a/DEPS +++ b/DEPS @@ -9,6 +9,7 @@ vars = { # Use this googlecode_url variable only if there is an internal mirror for it. # If you do not know, use the full path while defining your new deps entry. "googlecode_url": "http://%s.googlecode.com/svn", + "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", "chromium_trunk" : "http://src.chromium.org/svn/trunk", "chromium_revision": "217707", @@ -51,7 +52,7 @@ deps = { Var("chromium_trunk") + "/src/third_party/jsoncpp@" + Var("chromium_revision"), "third_party/jsoncpp/source": - "http://svn.code.sf.net/p/jsoncpp/code/trunk/jsoncpp@248", + (Var("sourceforge_url") % {"repo": "jsoncpp"}) + "/trunk/jsoncpp@248", "third_party/junit/": (Var("googlecode_url") % "webrtc") + "/deps/third_party/junit@3367",