Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: DEPS

Issue 31083008: Pull gn binary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .gitignore ('k') | tools/gn/bin/README.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « .gitignore ('k') | tools/gn/bin/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698