| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 # Please follow this process to make updates: | 70 # Please follow this process to make updates: |
| 71 # * file an issue with area-infrastructure requesting a roll for this | 71 # * file an issue with area-infrastructure requesting a roll for this |
| 72 # package (please also indicate what version to roll). | 72 # package (please also indicate what version to roll). |
| 73 # * let the infrastructure team submit the change on your behalf, | 73 # * let the infrastructure team submit the change on your behalf, |
| 74 # so they can build a new dev release and roll the submitted sdks a few | 74 # so they can build a new dev release and roll the submitted sdks a few |
| 75 # minutes later. | 75 # minutes later. |
| 76 # | 76 # |
| 77 # For more details, see https://github.com/dart-lang/sdk/issues/30164 | 77 # For more details, see https://github.com/dart-lang/sdk/issues/30164 |
| 78 "dart_style_tag": "@1.0.7", # Please see the note above before updating. | 78 "dart_style_tag": "@1.0.7", # Please see the note above before updating. |
| 79 | 79 |
| 80 "dartdoc_tag" : "@v0.13.0+1", | 80 "dartdoc_tag" : "@v0.13.0+2", |
| 81 "fixnum_tag": "@0.10.5", | 81 "fixnum_tag": "@0.10.5", |
| 82 "func_tag": "@1.0.0", | 82 "func_tag": "@1.0.0", |
| 83 "glob_tag": "@1.1.3", | 83 "glob_tag": "@1.1.3", |
| 84 "html_tag" : "@0.13.1", | 84 "html_tag" : "@0.13.1", |
| 85 "http_multi_server_tag" : "@2.0.3", | 85 "http_multi_server_tag" : "@2.0.3", |
| 86 "http_parser_tag" : "@3.1.1", | 86 "http_parser_tag" : "@3.1.1", |
| 87 "http_tag" : "@0.11.3+14", | 87 "http_tag" : "@0.11.3+14", |
| 88 "http_throttle_tag" : "@1.0.1", | 88 "http_throttle_tag" : "@1.0.1", |
| 89 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", | 89 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", |
| 90 "intl_tag": "@0.14.0", | 90 "intl_tag": "@0.14.0", |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 # Update the Windows toolchain if necessary. | 479 # Update the Windows toolchain if necessary. |
| 480 'name': 'win_toolchain', | 480 'name': 'win_toolchain', |
| 481 'pattern': '.', | 481 'pattern': '.', |
| 482 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 482 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 483 }, | 483 }, |
| 484 { | 484 { |
| 485 "pattern": ".", | 485 "pattern": ".", |
| 486 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 486 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 487 }, | 487 }, |
| 488 ] | 488 ] |
| OLD | NEW |