aboutsummaryrefslogtreecommitdiffhomepage
path: root/DEPS
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 18:19:46 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 18:19:46 +0000
commit0045eddac608288c76f9be4e9c62916bc17f8d16 (patch)
treec87d38f234260d5fc8310ee9867dabc0bcb4001a /DEPS
parentb5b3168a645802f66233234a06dd5a3764f18018 (diff)
Add "runhooks" to run gyp step upon gclient sync, for buildbot
git-svn-id: http://skia.googlecode.com/svn/trunk@1617 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS13
1 files changed, 11 insertions, 2 deletions
diff --git a/DEPS b/DEPS
index ce334e8e10..890d7870f2 100644
--- a/DEPS
+++ b/DEPS
@@ -1,11 +1,20 @@
+use_relative_paths = True
+
# Dependencies on outside packages, as needed for developers/bots that use
# "gclient" instead of raw SVN access.
#
# For now, this must be maintained in parallel with "SVN externals"
# dependencies for developers who use raw SVN instead of "gclient".
# See third_party/externals/README
-
-use_relative_paths = True
+#
deps = {
"third_party/externals/gyp" : "http://gyp.googlecode.com/svn/trunk@907",
}
+
+hooks = [
+ {
+ # A change to a .gyp, .gypi, or to GYP itself should run the generator.
+ "pattern": ".",
+ "action": ["python", "trunk/gyp_skia"],
+ },
+]