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

Unified Diff: DEPS

Issue 8251003: Add jsoncpp in DEPS and the gyp file to build jsoncpp in chromium. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 2 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 | third_party/devscripts/chromium-1.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
===================================================================
--- DEPS (revision 106791)
+++ DEPS (working copy)
@@ -2,6 +2,7 @@
# 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://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
"webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
"nacl_trunk": "http://src.chromium.org/native_client/trunk",
"webkit_revision": "98077",
@@ -32,6 +33,7 @@
"skia_revision": "2514",
"v8_revision": "9637",
"webrtc_revision": "711",
+ "jsoncpp_revision": "246",
# Note: On most bots, clang is not checked out via DEPS but by
# tools/clang/scripts/update.sh. The script reads this line here.
@@ -276,6 +278,14 @@
"src/third_party/webrtc":
(Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"),
+ "src/third_party/jsoncpp/source/include":
+ (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
+ "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"),
+
+ "src/third_party/jsoncpp/source/src/lib_json":
+ (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
+ "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
+
"src/third_party/mozc/session":
(Var("googlecode_url") % "mozc") + "/trunk/src/session@58",
« no previous file with comments | « no previous file | third_party/devscripts/chromium-1.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698