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

Side by Side Diff: tools/deps/dartium.deps/DEPS

Issue 1322753005: Add download of the stable SDK from gcloud to the gclient hooks in DEPS. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Exclude from create_tarball.py Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « tools/create_tarball.py ('k') | tools/sdks/.gitignore » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import gclient_utils 1 import gclient_utils
2 import os 2 import os
3 3
4 path = gclient_utils.FindGclientRoot(os.getcwd()) 4 path = gclient_utils.FindGclientRoot(os.getcwd())
5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS. 5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS.
6 6
7 # Now we need to override some settings and add some new ones. 7 # Now we need to override some settings and add some new ones.
8 8
9 vars.update({ 9 vars.update({
10 "chromium_url": "http://src.chromium.org/svn", 10 "chromium_url": "http://src.chromium.org/svn",
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 }) 231 })
232 hooks.append({ 232 hooks.append({
233 "name": "checked_in_dart_binaries", 233 "name": "checked_in_dart_binaries",
234 "pattern": ".", 234 "pattern": ".",
235 "action": [ 235 "action": [
236 "download_from_google_storage", 236 "download_from_google_storage",
237 "--no_auth", 237 "--no_auth",
238 "--no_resume", 238 "--no_resume",
239 "--bucket", 239 "--bucket",
240 "dart-dependencies", 240 "dart-dependencies",
241 "-d", 241 "--recursive",
242 "-r", 242 "--directory",
243 "src/dart/tools/testing/bin", 243 "src/dart/tools/testing/bin",
244 ], 244 ],
245 }) 245 })
246 hooks.append({
247 "name": "checked_in_dart_sdks",
248 "pattern": ".",
249 "action": [
250 "download_from_google_storage",
251 "--no_auth",
252 "--no_resume",
253 "--bucket",
254 "dart-dependencies",
255 "--recursive",
256 "--auto_platform",
257 "--extract",
258 "--directory",
259 "src/dart/tools/sdks",
260 ],
261 })
OLDNEW
« no previous file with comments | « tools/create_tarball.py ('k') | tools/sdks/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698