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

Unified Diff: DEPS

Issue 2167163002: Basic standalone GN configs. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fmt Created 4 years, 5 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 | « BUILD.gn ('k') | gn.py » ('j') | gn/BUILDCONFIG.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index 3e87e0e5bbf585ff6f304c872e04c038c9369b87..5964f266751ea5721fda2d943a106b309ddc3e16 100644
--- a/DEPS
+++ b/DEPS
@@ -3,9 +3,7 @@ use_relative_paths = True
# Dependencies on outside packages.
#
deps = {
- "build": "https://chromium.googlesource.com/chromium/src/build.git@c3550298c508d10c6281794de126223a38359249",
"buildtools": "https://chromium.googlesource.com/chromium/buildtools.git@60f7f9a8b421ebf9a46041dfa2ff11c0fe59c582",
- "tools/clang": "https://chromium.googlesource.com/chromium/src/tools/clang.git@ea64c667cd841b2c3268bd7dfd223269f3ea23ba",
"common": "https://skia.googlesource.com/common.git@c282fe0b6e392b14f88d647cbd86e1a3ef5498e0",
@@ -66,4 +64,33 @@ deps_os = {
}
}
+hooks = [{
+ 'pattern': '.',
+ 'action': ['download_from_google_storage',
+ '--quiet',
+ '--no_resume',
+ '--no_auth',
+ '--bucket', 'chromium-gn',
+ '--platform=linux*',
+ '-s', 'skia/buildtools/linux64/gn.sha1'],
+},{
+ 'pattern': '.',
+ 'action': ['download_from_google_storage',
+ '--quiet',
+ '--no_resume',
+ '--no_auth',
+ '--bucket', 'chromium-gn',
+ '--platform=darwin',
+ '-s', 'skia/buildtools/mac/gn.sha1'],
+},{
+ 'pattern': '.',
+ 'action': ['download_from_google_storage',
+ '--quiet',
+ '--no_resume',
+ '--no_auth',
+ '--bucket', 'chromium-gn',
+ '--platform=win32',
+ '-s', 'skia/buildtools/win/gn.sha1'],
+}]
+
recursedeps = [ "common" ]
« no previous file with comments | « BUILD.gn ('k') | gn.py » ('j') | gn/BUILDCONFIG.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698