summaryrefslogtreecommitdiffstats
path: root/gears
diff options
context:
space:
mode:
authormpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-28 22:56:07 +0000
committermpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-28 22:56:07 +0000
commitece3837f6394cd2c97e2898269d40aa5cdaa3b1b (patch)
tree7a9d3771de81ce57d2fb75ed0a8af59b90c4a0df /gears
parent9899d8fa2f78bac726b5c3a44534b2a0ed206e8c (diff)
downloadchromium_src-ece3837f6394cd2c97e2898269d40aa5cdaa3b1b.zip
chromium_src-ece3837f6394cd2c97e2898269d40aa5cdaa3b1b.tar.gz
chromium_src-ece3837f6394cd2c97e2898269d40aa5cdaa3b1b.tar.bz2
Add a DEPS file to gears. This allows Gears developers to pull the gears
component directly, whose DEPS file then grabs the needed build stuff out of the Chrome tree. Since gclient only examines DEPS files at the root of solutions, this file has no effect on dependencies for Chrome developers. Review URL: http://codereview.chromium.org/8675 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4105 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gears')
-rw-r--r--gears/DEPS28
1 files changed, 28 insertions, 0 deletions
diff --git a/gears/DEPS b/gears/DEPS
new file mode 100644
index 0000000..8c202e6
--- /dev/null
+++ b/gears/DEPS
@@ -0,0 +1,28 @@
+# We pull 3 components from the Chrome tree at this revision.
+chrome_rev = '@4086'
+
+# We pull 2 components from the Gears tree at this revision.
+gears_rev = '@2951'
+
+deps = {
+ "src/build":
+ "svn://chrome-svn/chrome/trunk/src/build" + chrome_rev,
+
+ "src/site_scons":
+ "svn://chrome-svn/chrome/trunk/src/site_scons" + chrome_rev,
+
+ "src/third_party/scons":
+ "svn://chrome-svn/chrome/trunk/src/third_party/scons" + chrome_rev,
+
+ "src/gears/gears":
+ "http://gears.googlecode.com/svn/trunk/gears" + gears_rev,
+
+ "src/gears/third_party":
+ "http://gears.googlecode.com/svn/trunk/third_party" + gears_rev,
+}
+
+# checkdeps.py shouldn't check include paths for files in these dirs:
+skip_child_includes = [
+ "gears",
+ "third_party",
+]