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

Unified Diff: DEPS

Issue 1658223002: DEPS for gn, used by 'gclient runhooks' to sync gn in buildtools/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. Created 4 years, 11 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 | « no previous file | no next file » | 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 6b2f7679939d771e5aef0e04d5e345b0929c82a0..f15a8f88dd49b5bb4bb944ce67154ab374982a89 100644
--- a/DEPS
+++ b/DEPS
@@ -136,6 +136,40 @@ hooks = [
'-d', 'v8/tools/luci-go/linux64',
],
},
+ # Pull GN using checked-in hashes.
+ {
+ "name": "gn_win",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=win32",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "v8/buildtools/win/gn.exe.sha1",
+ ],
+ },
+ {
+ "name": "gn_mac",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=darwin",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "v8/buildtools/mac/gn.sha1",
+ ],
+ },
+ {
+ "name": "gn_linux",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=linux*",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "v8/buildtools/linux64/gn.sha1",
+ ],
+ },
{
# Update the Windows toolchain if necessary.
'name': 'win_toolchain',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698