aboutsummaryrefslogtreecommitdiffhomepage
path: root/DEPS
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 16:04:25 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 16:04:25 +0000
commitfc0685652ea1617b93aed84c7674fcafd55a30f6 (patch)
treeff9a9b79396577519a2fd150a333445659988b10 /DEPS
parentc8cc60cd3ae721a8e9b34f7ee544695f9241aa74 (diff)
Add DEPS file in an attempt to make both gclient and svn update bring in
third_party/externals. git-svn-id: http://skia.googlecode.com/svn/trunk@1566 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS14
1 files changed, 14 insertions, 0 deletions
diff --git a/DEPS b/DEPS
new file mode 100644
index 0000000000..5524f39b87
--- /dev/null
+++ b/DEPS
@@ -0,0 +1,14 @@
+hooks = [
+ {
+ # This is a hack to download the code in third_party/externals in gclient
+ # (it works fine without this hack when you use svn instead of gclient).
+ #
+ # Because gclient runs svn update with the --ignore_externals flag set,
+ # it will not pick up our external dependencies in third_party/externals.
+ # So run "svn update" again for these directories.
+ #
+ # See https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/1f99541c2c5f6c6e
+ "pattern": ".*",
+ "action": ["svn", "update", "trunk/third_party/externals"],
+ },
+]