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

Side by Side Diff: 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 | « no previous file | tools/create_tarball.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 vars = { 5 vars = {
6 # The dart_root is the root of our sdk checkout. This is normally 6 # The dart_root is the root of our sdk checkout. This is normally
7 # simply sdk, but if using special gclient specs it can be different. 7 # simply sdk, but if using special gclient specs it can be different.
8 "dart_root": "sdk", 8 "dart_root": "sdk",
9 9
10 # The svn location to pull out dependencies from 10 # The svn location to pull out dependencies from
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 }, 363 },
364 { 364 {
365 'name': 'checked_in_dart_binaries', 365 'name': 'checked_in_dart_binaries',
366 'pattern': '.', 366 'pattern': '.',
367 'action': [ 367 'action': [
368 'download_from_google_storage', 368 'download_from_google_storage',
369 '--no_auth', 369 '--no_auth',
370 '--no_resume', 370 '--no_resume',
371 '--bucket', 371 '--bucket',
372 'dart-dependencies', 372 'dart-dependencies',
373 '-d', 373 '--recursive',
374 '-r', 374 '--directory',
375 Var('dart_root') + '/tools/testing/bin', 375 Var('dart_root') + '/tools/testing/bin',
376 ], 376 ],
377 }, 377 },
378 { 378 {
379 'name': 'd8_testing_binaries', 379 'name': 'd8_testing_binaries',
380 'pattern': '.', 380 'pattern': '.',
381 'action': [ 381 'action': [
382 'download_from_google_storage', 382 'download_from_google_storage',
383 '--no_auth', 383 '--no_auth',
384 '--no_resume', 384 '--no_resume',
385 '--bucket', 385 '--bucket',
386 'dart-dependencies', 386 'dart-dependencies',
387 '-d', 387 '--recursive',
388 '-r', 388 '--directory',
389 Var('dart_root') + '/third_party/d8', 389 Var('dart_root') + '/third_party/d8',
390 ], 390 ],
391 }, 391 },
392 392 {
393 "name": "checked_in_dart_sdks",
394 "pattern": ".",
395 "action": [
396 "download_from_google_storage",
397 "--no_auth",
398 "--no_resume",
399 "--bucket",
400 "dart-dependencies",
401 "--recursive",
402 "--auto_platform",
403 "--extract",
404 "--directory",
405 Var('dart_root') + "/tools/sdks",
406 ],
407 },
393 ] 408 ]
OLDNEW
« no previous file with comments | « no previous file | tools/create_tarball.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698