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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 Var("github_mirror") + "linter.git" + Var("linter_tag"), | 240 Var("github_mirror") + "linter.git" + Var("linter_tag"), |
241 Var("dart_root") + "/third_party/pkg/logging": | 241 Var("dart_root") + "/third_party/pkg/logging": |
242 Var("github_mirror") + "logging.git" + Var("logging_tag"), | 242 Var("github_mirror") + "logging.git" + Var("logging_tag"), |
243 Var("dart_root") + "/third_party/pkg/markdown": | 243 Var("dart_root") + "/third_party/pkg/markdown": |
244 Var("github_mirror") + "markdown.git" + Var("markdown_tag"), | 244 Var("github_mirror") + "markdown.git" + Var("markdown_tag"), |
245 Var("dart_root") + "/third_party/pkg/matcher": | 245 Var("dart_root") + "/third_party/pkg/matcher": |
246 Var("github_mirror") + "matcher.git" + Var("matcher_tag"), | 246 Var("github_mirror") + "matcher.git" + Var("matcher_tag"), |
247 Var("dart_root") + "/third_party/pkg/mime": | 247 Var("dart_root") + "/third_party/pkg/mime": |
248 Var("github_mirror") + "mime.git" + Var("mime_rev"), | 248 Var("github_mirror") + "mime.git" + Var("mime_rev"), |
249 Var("dart_root") + "/third_party/pkg/mockito": | 249 Var("dart_root") + "/third_party/pkg/mockito": |
250 Var("github_mirror") + mockito.git" + Var("mockito_tag"), | 250 Var("github_mirror") + "mockito.git" + Var("mockito_tag"), |
251 Var("dart_root") + "/third_party/pkg/mustache4dart": | 251 Var("dart_root") + "/third_party/pkg/mustache4dart": |
252 Var("chromium_git") | 252 Var("chromium_git") |
253 + "/external/github.com/valotas/mustache4dart.git" | 253 + "/external/github.com/valotas/mustache4dart.git" |
254 + Var("mustache4dart_tag"), | 254 + Var("mustache4dart_tag"), |
255 Var("dart_root") + "/third_party/pkg/oauth2": | 255 Var("dart_root") + "/third_party/pkg/oauth2": |
256 Var("github_mirror") + "oauth2.git" + Var("oauth2_tag"), | 256 Var("github_mirror") + "oauth2.git" + Var("oauth2_tag"), |
257 Var("dart_root") + "/third_party/observatory_pub_packages": | 257 Var("dart_root") + "/third_party/observatory_pub_packages": |
258 Var("github_mirror") + "observatory_pub_packages.git" | 258 Var("github_mirror") + "observatory_pub_packages.git" |
259 + Var("observatory_pub_packages_rev"), | 259 + Var("observatory_pub_packages_rev"), |
260 Var("dart_root") + "/third_party/pkg_tested/package_config": | 260 Var("dart_root") + "/third_party/pkg_tested/package_config": |
(...skipping 218 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 |