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

Unified Diff: DEPS

Issue 340153002: Add hooks to get the GN binaries in buildtools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 7a70478a69d81b2162f2f2c527643300bc3ad6a2..1e7e43fb15123bd581b1eed474ff2ac03390424b 100644
--- a/DEPS
+++ b/DEPS
@@ -662,7 +662,7 @@ hooks = [
"--platform=win32",
"--no_auth",
"--bucket", "chromium-gn",
- "-s", "src/tools/gn/bin/win/gn.exe.sha1",
+ "-s", "src/buildtools/win/gn.exe.sha1",
],
},
{
@@ -673,11 +673,57 @@ hooks = [
"--platform=darwin",
"--no_auth",
"--bucket", "chromium-gn",
+ "-s", "src/buildtools/mac/gn.sha1",
+ ],
+ },
+ {
+ "name": "gn_linux32",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=linux*",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "src/buildtools/linux32/gn.sha1",
+ ],
+ },
+ {
+ "name": "gn_linux64",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=linux*",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "src/buildtools/linux64/gn.sha1",
+ ],
+ },
+ # Pull GN binaries (old location). TODO(brettw) remove this after a transition
+ # period while we move the binaries from tools/gn/bin to buildtools.
+ {
+ "name": "gn_old_win",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=win32",
+ "--no_auth",
+ "--bucket", "chromium-gn",
+ "-s", "src/tools/gn/bin/win/gn.exe.sha1",
+ ],
+ },
+ {
+ "name": "gn_old_mac",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=darwin",
+ "--no_auth",
+ "--bucket", "chromium-gn",
"-s", "src/tools/gn/bin/mac/gn.sha1",
],
},
{
- "name": "gn_linux",
+ "name": "gn_old_linux",
"pattern": ".",
"action": [ "download_from_google_storage",
"--no_resume",
@@ -688,7 +734,7 @@ hooks = [
],
},
{
- "name": "gn_linux32",
+ "name": "gn_old_linux32",
"pattern": ".",
"action": [ "download_from_google_storage",
"--no_resume",
« 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