diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 22:20:03 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 22:20:03 +0000 |
commit | 098cc8deab42ea257b4c0418adc5a60d62b1efaf (patch) | |
tree | 6833bd7dad8c582f04de93c4c7f8f1f04cddf09a /DEPS | |
parent | a1780724302512e91cde4448c39268d9880c9e34 (diff) | |
download | chromium_src-098cc8deab42ea257b4c0418adc5a60d62b1efaf.zip chromium_src-098cc8deab42ea257b4c0418adc5a60d62b1efaf.tar.gz chromium_src-098cc8deab42ea257b4c0418adc5a60d62b1efaf.tar.bz2 |
Convert the patterns for updating GN sha1's to be the full path.
BUG=
R=maruel@chromium.org
Review URL: https://codereview.chromium.org/75543005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236318 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -647,35 +647,35 @@ hooks = [ # Pull GN binaries. This needs to be before running GYP below. { "name": "gn_win", - "pattern": "\\.sha1$", + "pattern": "src/tools/gn/bin/win/gn.exe.sha1", "action": [ "download_from_google_storage", + "--no_resume", "--platform=win32", - "--directory", "--no_auth", "--bucket", "chromium-gn", - "src/tools/gn/bin/win", + "-s", "src/tools/gn/bin/win/gn.exe.sha1", ], }, { "name": "gn_mac", - "pattern": "\\.sha1$", + "pattern": "src/tools/gn/bin/mac/gn.sha1", "action": [ "download_from_google_storage", + "--no_resume", "--platform=darwin", - "--directory", "--no_auth", "--bucket", "chromium-gn", - "src/tools/gn/bin/mac", + "-s", "src/tools/gn/bin/mac/gn.sha1", ], }, { "name": "gn_linux", - "pattern": "\\.sha1$", + "pattern": "src/tools/gn/bin/linux/gn.sha1", "action": [ "download_from_google_storage", + "--no_resume", "--platform=linux*", - "--directory", "--no_auth", "--bucket", "chromium-gn", - "src/tools/gn/bin/linux", + "-s", "src/tools/gn/bin/linux/gn.sha1", ], }, { |