OLD | NEW |
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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Before adding or updating dependencies, please review the documentation here: | 6 # Before adding or updating dependencies, please review the documentation here: |
7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies | 7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies |
8 | 8 |
9 vars = { | 9 vars = { |
10 # The dart_root is the root of our sdk checkout. This is normally | 10 # The dart_root is the root of our sdk checkout. This is normally |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "charcode_tag": "@v1.1.1", | 58 "charcode_tag": "@v1.1.1", |
59 "chrome_rev" : "@19997", | 59 "chrome_rev" : "@19997", |
60 "cli_util_tag" : "@0.1.0", | 60 "cli_util_tag" : "@0.1.0", |
61 "code_transformers_tag": "@v0.5.1", | 61 "code_transformers_tag": "@v0.5.1", |
62 "collection_tag": "@1.13.0", | 62 "collection_tag": "@1.13.0", |
63 "convert_tag": "@2.0.1", | 63 "convert_tag": "@2.0.1", |
64 "crypto_tag" : "@2.0.1", | 64 "crypto_tag" : "@2.0.1", |
65 "csslib_tag" : "@0.13.3+1", | 65 "csslib_tag" : "@0.13.3+1", |
66 "dart2js_info_tag" : "@0.5.4+2", | 66 "dart2js_info_tag" : "@0.5.4+2", |
67 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 67 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
68 "dart_style_tag": "@1.0.7", | 68 |
| 69 # Note: updates to dart_style have to be coordinated carefully with |
| 70 # the infrastructure-team so that the internal formatter in |
| 71 # `sdk/tools/sdks/*/dart-sdk/bin/dartfmt` matches the version here. |
| 72 # |
| 73 # Please follow this process to make updates: |
| 74 # * file an issue with area-infrastructure requesting a roll for this |
| 75 # package (please also indicate what version to roll). |
| 76 # * let the infrastructure team submit the change on your behalf, |
| 77 # so they can build a new dev release and roll the submitted sdks a few |
| 78 # minutes later. |
| 79 # |
| 80 # For more details, see https://github.com/dart-lang/sdk/issues/30164 |
| 81 "dart_style_tag": "@1.0.7", # Please see the note above before updating. |
| 82 |
69 "dartdoc_tag" : "@v0.13.0+1", | 83 "dartdoc_tag" : "@v0.13.0+1", |
70 "fixnum_tag": "@0.10.5", | 84 "fixnum_tag": "@0.10.5", |
71 "func_tag": "@1.0.0", | 85 "func_tag": "@1.0.0", |
72 "glob_tag": "@1.1.3", | 86 "glob_tag": "@1.1.3", |
73 "html_tag" : "@0.13.1", | 87 "html_tag" : "@0.13.1", |
74 "http_multi_server_tag" : "@2.0.3", | 88 "http_multi_server_tag" : "@2.0.3", |
75 "http_parser_tag" : "@3.1.1", | 89 "http_parser_tag" : "@3.1.1", |
76 "http_tag" : "@0.11.3+13", | 90 "http_tag" : "@0.11.3+13", |
77 "http_throttle_tag" : "@1.0.1", | 91 "http_throttle_tag" : "@1.0.1", |
78 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", | 92 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 # Update the Windows toolchain if necessary. | 501 # Update the Windows toolchain if necessary. |
488 'name': 'win_toolchain', | 502 'name': 'win_toolchain', |
489 'pattern': '.', | 503 'pattern': '.', |
490 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 504 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
491 }, | 505 }, |
492 { | 506 { |
493 "pattern": ".", | 507 "pattern": ".", |
494 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 508 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
495 }, | 509 }, |
496 ] | 510 ] |
OLD | NEW |