Chromium Code Reviews| Index: DEPS |
| diff --git a/DEPS b/DEPS |
| index e1b1c9fd9312bfa68c881625eb13bac90a0d4502..df20620996459f6375f419859e1f05e8d74367e4 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. |
|
Ryan Tseng
2013/10/25 22:10:03
:)
|
| +# |
| +# 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*\"", |
| + "--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", |