summaryrefslogtreecommitdiffstats
path: root/DEPS
diff options
context:
space:
mode:
authorojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-30 18:21:32 +0000
committerojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-30 18:21:32 +0000
commit3a00901d0029291c99b3dec9e452f75d6889d5f6 (patch)
treeffb4e17103ec926b1cd62671eea40fa9dc5fe185 /DEPS
parent376bc0c68d0eef158d872dc16741fae048ffb223 (diff)
downloadchromium_src-3a00901d0029291c99b3dec9e452f75d6889d5f6.zip
chromium_src-3a00901d0029291c99b3dec9e452f75d6889d5f6.tar.gz
chromium_src-3a00901d0029291c99b3dec9e452f75d6889d5f6.tar.bz2
Use Vars for the webkit repo and revision number. This way
we can override the via custom_vars in .gclient on the bots and official builds. Also pulls JavaScriptCore from webkit.org and updates the merge script appropriately. This is blocked on http://code.google.com/p/gclient/source/detail?r=41 being checked in an pushed. Review URL: http://codereview.chromium.org/19690 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8969 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS13
1 files changed, 10 insertions, 3 deletions
diff --git a/DEPS b/DEPS
index f6c0f38..f59bef7 100644
--- a/DEPS
+++ b/DEPS
@@ -1,3 +1,10 @@
+vars = {
+ "webkit_trunk":
+ "http://svn.webkit.org/repository/webkit/trunk",
+ "webkit_revision": "40364",
+}
+
+
deps = {
"src/breakpad/src":
"http://google-breakpad.googlecode.com/svn/trunk/src@285",
@@ -21,13 +28,13 @@ deps = {
"http://v8.googlecode.com/svn/trunk@1181",
"src/webkit/data/layout_tests/LayoutTests":
- "http://svn.webkit.org/repository/webkit/trunk/LayoutTests@40364",
+ Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"),
"src/third_party/WebKit/WebKit":
- "http://svn.webkit.org/repository/webkit/trunk/WebKit@40364",
+ Var("webkit_trunk") + "/WebKit@" + Var("webkit_revision"),
"src/third_party/WebKit/WebKitLibraries":
- "http://svn.webkit.org/repository/webkit/trunk/WebKitLibraries@40364",
+ Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"),
}