From ece3837f6394cd2c97e2898269d40aa5cdaa3b1b Mon Sep 17 00:00:00 2001 From: "mpcomplete@google.com" Date: Tue, 28 Oct 2008 22:56:07 +0000 Subject: 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 --- gears/DEPS | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 gears/DEPS (limited to 'gears/DEPS') 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", +] -- cgit v1.1