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

Side by Side Diff: DEPS

Issue 1868663002: Update worker mode to use the bazel protos directly instead of json (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: s/setInputBytes/addInputBytes 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_cli/lib/src/build_mode.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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "mime_rev": "@75890811d4af5af080351ba8a2853ad4c8df98dd", 64 "mime_rev": "@75890811d4af5af080351ba8a2853ad4c8df98dd",
65 "mustache4dart_rev" : "@5724cfd85151e5b6b53ddcd3380daf188fe47f92", 65 "mustache4dart_rev" : "@5724cfd85151e5b6b53ddcd3380daf188fe47f92",
66 "oauth2_tag": "@1.0.0", 66 "oauth2_tag": "@1.0.0",
67 "observe_rev": "@eee2b8ec34236fa46982575fbccff84f61202ac6", 67 "observe_rev": "@eee2b8ec34236fa46982575fbccff84f61202ac6",
68 "observatory_pub_packages_rev": "@cf90eb9077177d3d6b3fd5e8289477c2385c026a", 68 "observatory_pub_packages_rev": "@cf90eb9077177d3d6b3fd5e8289477c2385c026a",
69 "package_config_rev": "@0.1.3", 69 "package_config_rev": "@0.1.3",
70 "path_tag": "@1.3.6", 70 "path_tag": "@1.3.6",
71 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", 71 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93",
72 "plugin_tag": "@0.1.0", 72 "plugin_tag": "@0.1.0",
73 "pool_tag": "@1.2.1", 73 "pool_tag": "@1.2.1",
74 "protobuf_tag": "@0.5.0+1",
74 "pub_rev": "@c1405b945c6d818c8cfe78334e8d4b11fd913103", 75 "pub_rev": "@c1405b945c6d818c8cfe78334e8d4b11fd913103",
75 "pub_cache_tag": "@v0.1.0", 76 "pub_cache_tag": "@v0.1.0",
76 "pub_semver_tag": "@1.2.1", 77 "pub_semver_tag": "@1.2.1",
77 "quiver_tag": "@0.21.4", 78 "quiver_tag": "@0.21.4",
78 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1", 79 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1",
79 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc", 80 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc",
80 "scheduled_test_tag": "@0.12.5+2", 81 "scheduled_test_tag": "@0.12.5+2",
81 "shelf_tag": "@0.6.5", 82 "shelf_tag": "@0.6.5",
82 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", 83 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9",
83 "source_maps_tag": "@0.10.1", 84 "source_maps_tag": "@0.10.1",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 + Var("observatory_pub_packages_rev"), 219 + Var("observatory_pub_packages_rev"),
219 Var("dart_root") + "/third_party/pkg_tested/package_config": 220 Var("dart_root") + "/third_party/pkg_tested/package_config":
220 (Var("github_mirror") % "package_config") + 221 (Var("github_mirror") % "package_config") +
221 Var("package_config_rev"), 222 Var("package_config_rev"),
222 Var("dart_root") + "/third_party/pkg/path": 223 Var("dart_root") + "/third_party/pkg/path":
223 (Var("github_mirror") % "path") + Var("path_tag"), 224 (Var("github_mirror") % "path") + Var("path_tag"),
224 Var("dart_root") + "/third_party/pkg/plugin": 225 Var("dart_root") + "/third_party/pkg/plugin":
225 (Var("github_mirror") % "plugin") + Var("plugin_tag"), 226 (Var("github_mirror") % "plugin") + Var("plugin_tag"),
226 Var("dart_root") + "/third_party/pkg/pool": 227 Var("dart_root") + "/third_party/pkg/pool":
227 (Var("github_mirror") % "pool") + Var("pool_tag"), 228 (Var("github_mirror") % "pool") + Var("pool_tag"),
229 Var("dart_root") + "/third_party/pkg/protobuf":
230 (Var("github_dartlang") % "dart-protobuf") + Var("protobuf_tag"),
228 Var("dart_root") + "/third_party/pkg/pub_semver": 231 Var("dart_root") + "/third_party/pkg/pub_semver":
229 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), 232 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"),
230 Var("dart_root") + "/third_party/pkg/pub": 233 Var("dart_root") + "/third_party/pkg/pub":
231 (Var("github_mirror") % "pub") + Var("pub_rev"), 234 (Var("github_mirror") % "pub") + Var("pub_rev"),
232 Var("dart_root") + "/third_party/pkg/pub_cache": 235 Var("dart_root") + "/third_party/pkg/pub_cache":
233 (Var("github_mirror") % "pub_cache") + Var("pub_cache_tag"), 236 (Var("github_mirror") % "pub_cache") + Var("pub_cache_tag"),
234 Var("dart_root") + "/third_party/pkg/quiver": 237 Var("dart_root") + "/third_party/pkg/quiver":
235 Var("chromium_git") 238 Var("chromium_git")
236 + "/external/github.com/google/quiver-dart.git" 239 + "/external/github.com/google/quiver-dart.git"
237 + Var("quiver_tag"), 240 + Var("quiver_tag"),
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 "--extract", 444 "--extract",
442 "-s", 445 "-s",
443 Var('dart_root') + "/third_party/clang.tar.gz.sha1", 446 Var('dart_root') + "/third_party/clang.tar.gz.sha1",
444 ], 447 ],
445 }, 448 },
446 { 449 {
447 "pattern": ".", 450 "pattern": ".",
448 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], 451 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"],
449 }, 452 },
450 ] 453 ]
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer_cli/lib/src/build_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698