Chromium Code Reviews| Index: DEPS |
| diff --git a/DEPS b/DEPS |
| index 2bccb087b3185d480c496362e66bf81c2ebdab2e..a4e0f5f5a1e32bfe2de9fad52d171aeae9d79b10 100644 |
| --- a/DEPS |
| +++ b/DEPS |
| @@ -1,3 +1,14 @@ |
| +# This file is automatically processed to create .DEPS.git which is the file |
| +# that gclient uses under git. |
| +# |
| +# See http://code.google.com/p/chromium/wiki/UsingGit |
| +# |
| +# To test manually, run: |
| +# python tools/deps2git/deps2git.py -o .DEPS.git |
| +# gclient runhooks |
| +# DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
| +# a bot when you modify this one. |
| +# |
| # When adding a new dependency, please update the top-level .gitignore file |
| # to list the dependency's destination directory. |
| @@ -606,6 +617,27 @@ hooks = [ |
| "-s", "src/third_party/WebKit", |
| "-o", "src/build/util/LASTCHANGE.blink"], |
| }, |
| + # Pull GN binaries. This needs to be before running GYP below. |
| + { |
| + "name": "gn_win", |
| + "pattern": "\\.sha1$", |
| + "action": [ "download_from_google_storage", |
| + "--platform=win32", |
| + "--directory", |
| + "--bucket", "chromium-gn", |
| + "src/tools/gn/bin/win", |
| + ], |
| + }, |
| + { |
| + "name": "gn_linux", |
| + "pattern": "\\.sha1$", |
| + "action": [ "download_from_google_storage", |
| + "--platform=\"linux*\"", |
|
shadi
2013/11/01 18:49:40
Recent gclient syncs show:
________ running 'dow
|
| + "--directory", |
| + "--bucket", "chromium-gn", |
| + "src/tools/gn/bin/linux", |
| + ], |
| + }, |
| { |
| # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| "name": "gyp", |