Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: DEPS

Issue 1890973003: pkg/analyzer: support latest pkg/crypto version (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: nits Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/incremental_cache.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 vars = { 5 vars = {
6 # The dart_root is the root of our sdk checkout. This is normally 6 # The dart_root is the root of our sdk checkout. This is normally
7 # simply sdk, but if using special gclient specs it can be different. 7 # simply sdk, but if using special gclient specs it can be different.
8 "dart_root": "sdk", 8 "dart_root": "sdk",
9 9
10 # We use mirrors of all github repos to guarantee reproducibility and 10 # We use mirrors of all github repos to guarantee reproducibility and
(...skipping 22 matching lines...) Expand all
33 "async_tag": "@1.9.0", 33 "async_tag": "@1.9.0",
34 "barback_tag" : "@0.15.2+7", 34 "barback_tag" : "@0.15.2+7",
35 "bazel_worker_tag": "@v0.1.0", 35 "bazel_worker_tag": "@v0.1.0",
36 "boolean_selector_tag" : "@1.0.0", 36 "boolean_selector_tag" : "@1.0.0",
37 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", 37 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e",
38 "charcode_tag": "@1.1.0", 38 "charcode_tag": "@1.1.0",
39 "chrome_rev" : "@19997", 39 "chrome_rev" : "@19997",
40 "cli_util_tag" : "@0.0.1+2", 40 "cli_util_tag" : "@0.0.1+2",
41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", 41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc",
42 "convert_tag": "@1.0.0", 42 "convert_tag": "@1.0.0",
43 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 43 "crypto_tag" : "@1.1.0",
44 "csslib_tag" : "@0.12.0", 44 "csslib_tag" : "@0.12.0",
45 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", 45 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1",
46 "dartdoc_tag" : "@v0.9.0", 46 "dartdoc_tag" : "@v0.9.0",
47 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", 47 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97",
48 "dart_style_tag": "@0.2.4", 48 "dart_style_tag": "@0.2.4",
49 "dev_compiler_rev": "@0c5dd2d1e999c421d978a478e267aac6279e087a", 49 "dev_compiler_rev": "@0c5dd2d1e999c421d978a478e267aac6279e087a",
50 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", 50 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd",
51 "html_tag" : "@0.12.1+1", 51 "html_tag" : "@0.12.1+1",
52 "http_tag" : "@0.11.3+3", 52 "http_tag" : "@0.11.3+3",
53 "http_multi_server_tag" : "@2.0.0", 53 "http_multi_server_tag" : "@2.0.0",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 Var("boolean_selector_tag"), 158 Var("boolean_selector_tag"),
159 Var("dart_root") + "/third_party/pkg/charcode": 159 Var("dart_root") + "/third_party/pkg/charcode":
160 (Var("github_mirror") % "charcode") + Var("charcode_tag"), 160 (Var("github_mirror") % "charcode") + Var("charcode_tag"),
161 Var("dart_root") + "/third_party/pkg/cli_util": 161 Var("dart_root") + "/third_party/pkg/cli_util":
162 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"), 162 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"),
163 Var("dart_root") + "/third_party/pkg/collection": 163 Var("dart_root") + "/third_party/pkg/collection":
164 (Var("github_mirror") % "collection") + Var("collection_rev"), 164 (Var("github_mirror") % "collection") + Var("collection_rev"),
165 Var("dart_root") + "/third_party/pkg/convert": 165 Var("dart_root") + "/third_party/pkg/convert":
166 "https://github.com/dart-lang/convert.git" + Var("convert_tag"), 166 "https://github.com/dart-lang/convert.git" + Var("convert_tag"),
167 Var("dart_root") + "/third_party/pkg/crypto": 167 Var("dart_root") + "/third_party/pkg/crypto":
168 (Var("github_mirror") % "crypto") + Var("crypto_rev"), 168 (Var("github_mirror") % "crypto") + Var("crypto_tag"),
169 Var("dart_root") + "/third_party/pkg/csslib": 169 Var("dart_root") + "/third_party/pkg/csslib":
170 (Var("github_mirror") % "csslib") + Var("csslib_tag"), 170 (Var("github_mirror") % "csslib") + Var("csslib_tag"),
171 Var("dart_root") + "/third_party/dart-services": 171 Var("dart_root") + "/third_party/dart-services":
172 (Var("github_mirror") % "dart-services") + 172 (Var("github_mirror") % "dart-services") +
173 Var("dart_services_rev"), 173 Var("dart_services_rev"),
174 Var("dart_root") + "/third_party/pkg_tested/dart_style": 174 Var("dart_root") + "/third_party/pkg_tested/dart_style":
175 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), 175 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"),
176 Var("dart_root") + "/third_party/pkg/dart2js_info": 176 Var("dart_root") + "/third_party/pkg/dart2js_info":
177 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"), 177 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"),
178 Var("dart_root") + "/third_party/pkg/dartdoc": 178 Var("dart_root") + "/third_party/pkg/dartdoc":
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 "--extract", 447 "--extract",
448 "-s", 448 "-s",
449 Var('dart_root') + "/third_party/clang.tar.gz.sha1", 449 Var('dart_root') + "/third_party/clang.tar.gz.sha1",
450 ], 450 ],
451 }, 451 },
452 { 452 {
453 "pattern": ".", 453 "pattern": ".",
454 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], 454 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"],
455 }, 455 },
456 ] 456 ]
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/incremental_cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698