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 15 matching lines...) Expand all Loading... |
26 "chromium_git": "https://chromium.googlesource.com", | 26 "chromium_git": "https://chromium.googlesource.com", |
27 "fuchsia_git": "https://fuchsia.googlesource.com", | 27 "fuchsia_git": "https://fuchsia.googlesource.com", |
28 | 28 |
29 # IMPORTANT: | 29 # IMPORTANT: |
30 # This should only be used for local testing. Before adding a new package, | 30 # This should only be used for local testing. Before adding a new package, |
31 # request a mirror of the package you need. To request a mirror, file an issue | 31 # request a mirror of the package you need. To request a mirror, file an issue |
32 # on github and add the label 'area-infrastructure'. | 32 # on github and add the label 'area-infrastructure'. |
33 # "github_dartlang": "https://github.com/dart-lang/%s.git", | 33 # "github_dartlang": "https://github.com/dart-lang/%s.git", |
34 | 34 |
35 "co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d", | 35 "co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d", |
| 36 "gyp_rev": "@4801a5331ae62da9769a327f11c4213d32fb0dad", |
36 | 37 |
37 # Revisions of GN related dependencies. This should match the revision | 38 # Revisions of GN related dependencies. This should match the revision |
38 # pulled by Flutter. | 39 # pulled by Flutter. |
39 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", | 40 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", |
40 | 41 |
41 # Scripts that make 'git cl format' work. | 42 # Scripts that make 'git cl format' work. |
42 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", | 43 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", |
43 | 44 |
44 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", | 45 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", |
45 | 46 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 "usage_tag": "@3.3.0", | 133 "usage_tag": "@3.3.0", |
133 "utf_tag": "@0.9.0+3", | 134 "utf_tag": "@0.9.0+3", |
134 "watcher_tag": "@0.9.7+3", | 135 "watcher_tag": "@0.9.7+3", |
135 "web_socket_channel_tag": "@1.0.4", | 136 "web_socket_channel_tag": "@1.0.4", |
136 "WebCore_rev": "@3c45690813c112373757bbef53de1602a62af609", | 137 "WebCore_rev": "@3c45690813c112373757bbef53de1602a62af609", |
137 "yaml_tag": "@2.1.12", | 138 "yaml_tag": "@2.1.12", |
138 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 139 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
139 } | 140 } |
140 | 141 |
141 deps = { | 142 deps = { |
| 143 # Stuff needed for GYP to run. |
| 144 Var("dart_root") + "/third_party/gyp": |
| 145 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), |
| 146 |
142 # Stuff needed for GN build. | 147 # Stuff needed for GN build. |
143 Var("dart_root") + "/buildtools": | 148 Var("dart_root") + "/buildtools": |
144 Var("fuchsia_git") + "/buildtools" + Var("buildtools_revision"), | 149 Var("fuchsia_git") + "/buildtools" + Var("buildtools_revision"), |
145 Var("dart_root") + "/buildtools/clang_format/script": | 150 Var("dart_root") + "/buildtools/clang_format/script": |
146 Var("chromium_git") + "/chromium/llvm-project/cfe/tools/clang-format.git" + | 151 Var("chromium_git") + "/chromium/llvm-project/cfe/tools/clang-format.git" + |
147 Var("clang_format_scripts_rev"), | 152 Var("clang_format_scripts_rev"), |
148 | 153 |
149 Var("dart_root") + "/tests/co19/src": | 154 Var("dart_root") + "/tests/co19/src": |
150 Var("github_mirror") + "co19.git" + Var("co19_rev"), | 155 Var("github_mirror") + "co19.git" + Var("co19_rev"), |
151 | 156 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 'name': 'download_android_tools', | 470 'name': 'download_android_tools', |
466 'pattern': '.', | 471 'pattern': '.', |
467 'action': ['python', 'sdk/tools/android/download_android_tools.py'], | 472 'action': ['python', 'sdk/tools/android/download_android_tools.py'], |
468 }, | 473 }, |
469 { | 474 { |
470 'name': 'buildtools', | 475 'name': 'buildtools', |
471 'pattern': '.', | 476 'pattern': '.', |
472 'action': ['python', 'sdk/tools/buildtools/update.py'], | 477 'action': ['python', 'sdk/tools/buildtools/update.py'], |
473 }, | 478 }, |
474 { | 479 { |
| 480 # Update the Windows toolchain if necessary. |
| 481 'name': 'win_toolchain', |
| 482 'pattern': '.', |
| 483 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 484 }, |
| 485 { |
475 "pattern": ".", | 486 "pattern": ".", |
476 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 487 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
477 }, | 488 }, |
478 ] | 489 ] |
OLD | NEW |