| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1", | 93 "jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1", |
| 94 "json_rpc_2_tag": "@2.0.4", | 94 "json_rpc_2_tag": "@2.0.4", |
| 95 "linter_tag": "@0.1.33", | 95 "linter_tag": "@0.1.33", |
| 96 "logging_tag": "@0.11.3+1", | 96 "logging_tag": "@0.11.3+1", |
| 97 "markdown_tag": "@0.11.3", | 97 "markdown_tag": "@0.11.3", |
| 98 "matcher_tag": "@0.12.0+2", | 98 "matcher_tag": "@0.12.0+2", |
| 99 "mime_rev": "@75890811d4af5af080351ba8a2853ad4c8df98dd", | 99 "mime_rev": "@75890811d4af5af080351ba8a2853ad4c8df98dd", |
| 100 "mockito_tag": "@2.0.2", | 100 "mockito_tag": "@2.0.2", |
| 101 "mustache4dart_tag" : "@v1.1.0", | 101 "mustache4dart_tag" : "@v1.1.0", |
| 102 "oauth2_tag": "@1.0.2", | 102 "oauth2_tag": "@1.0.2", |
| 103 "observatory_pub_packages_rev": "@26aad88f1c1915d39bbcbff3cad589e2402fdcf1", | 103 "observatory_pub_packages_rev": "@a4e392521c720d244cd63e067387195d78584b35", |
| 104 "package_config_tag": "@1.0.1", | 104 "package_config_tag": "@1.0.1", |
| 105 "package_resolver_tag": "@1.0.2+1", | 105 "package_resolver_tag": "@1.0.2+1", |
| 106 "path_tag": "@1.4.1", | 106 "path_tag": "@1.4.1", |
| 107 "plugin_tag": "@0.2.0", | 107 "plugin_tag": "@0.2.0", |
| 108 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", | 108 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", |
| 109 "pool_tag": "@1.3.0", | 109 "pool_tag": "@1.3.0", |
| 110 "protobuf_tag": "@0.5.4", | 110 "protobuf_tag": "@0.5.4", |
| 111 "pub_rev": "@0f122625f8e607842afe156b9b23a9709e4ce39a", | 111 "pub_rev": "@0f122625f8e607842afe156b9b23a9709e4ce39a", |
| 112 "pub_semver_tag": "@1.3.2", | 112 "pub_semver_tag": "@1.3.2", |
| 113 "quiver_tag": "@0.22.0", | 113 "quiver_tag": "@0.22.0", |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 # Update the Windows toolchain if necessary. | 480 # Update the Windows toolchain if necessary. |
| 481 'name': 'win_toolchain', | 481 'name': 'win_toolchain', |
| 482 'pattern': '.', | 482 'pattern': '.', |
| 483 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 483 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 484 }, | 484 }, |
| 485 { | 485 { |
| 486 "pattern": ".", | 486 "pattern": ".", |
| 487 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 487 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 488 }, | 488 }, |
| 489 ] | 489 ] |
| OLD | NEW |