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

Side by Side Diff: DEPS

Issue 1885073002: update to use bazel_worker package (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: 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 14 matching lines...) Expand all
25 "github_dartlang": "https://github.com/dart-lang/%s.git", 25 "github_dartlang": "https://github.com/dart-lang/%s.git",
26 26
27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", 27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638",
28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", 28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0",
29 "chromium_git": "https://chromium.googlesource.com", 29 "chromium_git": "https://chromium.googlesource.com",
30 30
31 # Revisions of /third_party/* dependencies. 31 # Revisions of /third_party/* dependencies.
32 "args_tag": "@0.13.4", 32 "args_tag": "@0.13.4",
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 "boolean_selector_tag" : "@1.0.0", 36 "boolean_selector_tag" : "@1.0.0",
36 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", 37 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e",
37 "charcode_tag": "@1.1.0", 38 "charcode_tag": "@1.1.0",
38 "chrome_rev" : "@19997", 39 "chrome_rev" : "@19997",
39 "cli_util_tag" : "@0.0.1+2", 40 "cli_util_tag" : "@0.0.1+2",
40 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", 41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc",
41 "convert_tag": "@1.0.0", 42 "convert_tag": "@1.0.0",
42 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 43 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d",
43 "csslib_tag" : "@0.12.0", 44 "csslib_tag" : "@0.12.0",
44 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", 45 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 144
144 Var("dart_root") + "/third_party/WebCore": 145 Var("dart_root") + "/third_party/WebCore":
145 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"), 146 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"),
146 147
147 Var("dart_root") + "/third_party/pkg/args": 148 Var("dart_root") + "/third_party/pkg/args":
148 (Var("github_mirror") % "args") + Var("args_tag"), 149 (Var("github_mirror") % "args") + Var("args_tag"),
149 Var("dart_root") + "/third_party/pkg/async": 150 Var("dart_root") + "/third_party/pkg/async":
150 (Var("github_mirror") % "async") + Var("async_tag"), 151 (Var("github_mirror") % "async") + Var("async_tag"),
151 Var("dart_root") + "/third_party/pkg/barback": 152 Var("dart_root") + "/third_party/pkg/barback":
152 (Var("github_mirror") % "barback") + Var("barback_tag"), 153 (Var("github_mirror") % "barback") + Var("barback_tag"),
154 Var("dart_root") + "/third_party/pkg/bazel_worker":
155 (Var("github_dartlang") % "bazel_worker") + Var("bazel_worker_tag"),
153 Var("dart_root") + "/third_party/pkg/boolean_selector": 156 Var("dart_root") + "/third_party/pkg/boolean_selector":
154 (Var("github_dartlang") % "boolean_selector") + 157 (Var("github_dartlang") % "boolean_selector") +
155 Var("boolean_selector_tag"), 158 Var("boolean_selector_tag"),
156 Var("dart_root") + "/third_party/pkg/charcode": 159 Var("dart_root") + "/third_party/pkg/charcode":
157 (Var("github_mirror") % "charcode") + Var("charcode_tag"), 160 (Var("github_mirror") % "charcode") + Var("charcode_tag"),
158 Var("dart_root") + "/third_party/pkg/cli_util": 161 Var("dart_root") + "/third_party/pkg/cli_util":
159 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"), 162 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"),
160 Var("dart_root") + "/third_party/pkg/collection": 163 Var("dart_root") + "/third_party/pkg/collection":
161 (Var("github_mirror") % "collection") + Var("collection_rev"), 164 (Var("github_mirror") % "collection") + Var("collection_rev"),
162 Var("dart_root") + "/third_party/pkg/convert": 165 Var("dart_root") + "/third_party/pkg/convert":
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 "--extract", 447 "--extract",
445 "-s", 448 "-s",
446 Var('dart_root') + "/third_party/clang.tar.gz.sha1", 449 Var('dart_root') + "/third_party/clang.tar.gz.sha1",
447 ], 450 ],
448 }, 451 },
449 { 452 {
450 "pattern": ".", 453 "pattern": ".",
451 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], 454 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"],
452 }, 455 },
453 ] 456 ]
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