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

Side by Side Diff: DEPS

Issue 1151293004: Welcome charcode (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: master merge Created 5 years, 6 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 | no next file » | 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 # The svn location to pull out dependencies from 10 # The svn location to pull out dependencies from
(...skipping 11 matching lines...) Expand all
22 "gyp_rev": "@1752", 22 "gyp_rev": "@1752",
23 "co19_rev": "@801", 23 "co19_rev": "@801",
24 "chromium_url": "http://src.chromium.org/svn", 24 "chromium_url": "http://src.chromium.org/svn",
25 "chromium_git": "https://chromium.googlesource.com", 25 "chromium_git": "https://chromium.googlesource.com",
26 26
27 # Revisions of /third_party/* dependencies. 27 # Revisions of /third_party/* dependencies.
28 "7zip_rev" : "@19997", 28 "7zip_rev" : "@19997",
29 "analyzer_cli_tag" : "@1.0.1", 29 "analyzer_cli_tag" : "@1.0.1",
30 "args_tag": "@0.13.0", 30 "args_tag": "@0.13.0",
31 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", 31 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51",
32 "charcode_tag": "@1.1.0",
32 "chrome_rev" : "@19997", 33 "chrome_rev" : "@19997",
33 "clang_rev" : "@28450", 34 "clang_rev" : "@28450",
34 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", 35 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e",
35 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 36 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d",
36 "csslib_tag" : "@0.12.0", 37 "csslib_tag" : "@0.12.0",
37 "async_await_rev" : "@8b401a9f2e5e81dca5f70dbe7564112a0823dee6", 38 "async_await_rev" : "@8b401a9f2e5e81dca5f70dbe7564112a0823dee6",
38 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", 39 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97",
39 "dart_style_tag": "@0.1.8", 40 "dart_style_tag": "@0.1.8",
40 "d8_rev" : "@39739", 41 "d8_rev" : "@39739",
41 "fake_async_rev" : "@38614", 42 "fake_async_rev" : "@38614",
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 Var("dart_services_rev"), 159 Var("dart_services_rev"),
159 160
160 Var("dart_root") + "/third_party/pkg_tested/analyzer_cli": 161 Var("dart_root") + "/third_party/pkg_tested/analyzer_cli":
161 (Var("dart_github") % "analyzer_cli") + Var("analyzer_cli_tag"), 162 (Var("dart_github") % "analyzer_cli") + Var("analyzer_cli_tag"),
162 Var("dart_root") + "/third_party/pkg/args": 163 Var("dart_root") + "/third_party/pkg/args":
163 (Var("dart_github") % "args") + Var("args_tag"), 164 (Var("dart_github") % "args") + Var("args_tag"),
164 Var("dart_root") + "/third_party/pkg/async_await": 165 Var("dart_root") + "/third_party/pkg/async_await":
165 (Var("dart_github") % "async_await") + Var("async_await_rev"), 166 (Var("dart_github") % "async_await") + Var("async_await_rev"),
166 Var("dart_root") + "/third_party/pkg/barback": 167 Var("dart_root") + "/third_party/pkg/barback":
167 (Var("dart_github") % "barback") + Var("barback_rev"), 168 (Var("dart_github") % "barback") + Var("barback_rev"),
169 Var("dart_root") + "/third_party/pkg/charcode":
170 (Var("dart_github") % "charcode") + Var("charcode_tag"),
168 Var("dart_root") + "/third_party/pkg/collection": 171 Var("dart_root") + "/third_party/pkg/collection":
169 (Var("dart_github") % "collection") + Var("collection_rev"), 172 (Var("dart_github") % "collection") + Var("collection_rev"),
170 Var("dart_root") + "/third_party/pkg/crypto": 173 Var("dart_root") + "/third_party/pkg/crypto":
171 (Var("dart_github") % "crypto") + Var("crypto_rev"), 174 (Var("dart_github") % "crypto") + Var("crypto_rev"),
172 Var("dart_root") + "/third_party/pkg/csslib": 175 Var("dart_root") + "/third_party/pkg/csslib":
173 (Var("dart_github") % "csslib") + Var("csslib_tag"), 176 (Var("dart_github") % "csslib") + Var("csslib_tag"),
174 Var("dart_root") + "/third_party/pkg_tested/dart_style": 177 Var("dart_root") + "/third_party/pkg_tested/dart_style":
175 (Var("dart_github") % "dart_style") + Var("dart_style_tag"), 178 (Var("dart_github") % "dart_style") + Var("dart_style_tag"),
176 Var("dart_root") + "/third_party/pkg/glob": 179 Var("dart_root") + "/third_party/pkg/glob":
177 (Var("dart_github") % "glob") + Var("glob_rev"), 180 (Var("dart_github") % "glob") + Var("glob_rev"),
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 '--no_auth', 310 '--no_auth',
308 '--no_resume', 311 '--no_resume',
309 '--bucket', 312 '--bucket',
310 'dart-dependencies', 313 'dart-dependencies',
311 '-d', 314 '-d',
312 '-r', 315 '-r',
313 Var('dart_root') + '/tools/testing/bin', 316 Var('dart_root') + '/tools/testing/bin',
314 ], 317 ],
315 }, 318 },
316 ] 319 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698