aboutsummaryrefslogtreecommitdiffhomepage
path: root/DEPS
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-07-21 12:25:45 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-21 12:25:45 -0700
commit7fbfbbe8f435fde7233c78f4f2dd1efb4fdd324c (patch)
tree94d76299873e210f9f9f839ee25138a4a3dd8fe3 /DEPS
parent680e2e9a9eea28aa816ecdb88b4af1b4861393a0 (diff)
Basic standalone GN configs.
This sketches out what a world without Chrome's GN configs would look like. Instead of DEPSing in build/, we now host our own gypi_to_gn.py. The symlink from skia/ to . lets us run gclient hooks when the .gclient file is in the directory above skia/ or inside skia/. That means we don't need gn.py anymore. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2167163002 Review-Url: https://codereview.chromium.org/2167163002
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS31
1 files changed, 29 insertions, 2 deletions
diff --git a/DEPS b/DEPS
index 3e87e0e5bb..5964f26675 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" ]