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

Side by Side Diff: tools/deps/dartium.deps/DEPS

Issue 2379573010: roll dart2js_info to 0.3.0 (Closed)
Patch Set: Created 4 years, 2 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 | « pkg/compiler/pubspec.yaml ('k') | 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 1
2 import gclient_utils 2 import gclient_utils
3 import os 3 import os
4 4
5 path = gclient_utils.FindGclientRoot(os.getcwd()) 5 path = gclient_utils.FindGclientRoot(os.getcwd())
6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS. 6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS.
7 7
8 # Now we need to override some settings and add some new ones. 8 # Now we need to override some settings and add some new ones.
9 9
10 vars.update({ 10 vars.update({
(...skipping 14 matching lines...) Expand all
25 # against infra to make that happen. 25 # against infra to make that happen.
26 "github_mirror": 26 "github_mirror":
27 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", 27 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git",
28 28
29 "args_tag": "@0.13.0", 29 "args_tag": "@0.13.0",
30 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", 30 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51",
31 "charcode_tag": "@1.1.0", 31 "charcode_tag": "@1.1.0",
32 "collection_tag": "@1.9.1", 32 "collection_tag": "@1.9.1",
33 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 33 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d",
34 "csslib_tag" : "@0.12.0", 34 "csslib_tag" : "@0.12.0",
35 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", 35 "dart2js_info_tag" : "@0.3.0",
36 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", 36 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd",
37 "html_tag" : "@0.12.1+1", 37 "html_tag" : "@0.12.1+1",
38 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7", 38 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7",
39 "http_multi_server_tag" : "@1.3.2", 39 "http_multi_server_tag" : "@1.3.2",
40 "http_parser_rev" : "@8b179e36aba985208e4c5fb15cfddd386b6370a4", 40 "http_parser_rev" : "@8b179e36aba985208e4c5fb15cfddd386b6370a4",
41 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235", 41 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235",
42 "json_rpc_2_rev": "@a38eefd116d910199de205f962af92fed87c164c", 42 "json_rpc_2_rev": "@a38eefd116d910199de205f962af92fed87c164c",
43 "kernel_rev": "@449803b82e850a41148e636db1a6e4a848284aed", 43 "kernel_rev": "@449803b82e850a41148e636db1a6e4a848284aed",
44 "logging_rev": "@85d83e002670545e9039ad3985f0018ab640e597", 44 "logging_rev": "@85d83e002670545e9039ad3985f0018ab640e597",
45 "matcher_tag": "@0.12.0", 45 "matcher_tag": "@0.12.0",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 (Var("github_mirror") % "args") + Var("args_tag"), 86 (Var("github_mirror") % "args") + Var("args_tag"),
87 "src/dart/third_party/pkg/barback": 87 "src/dart/third_party/pkg/barback":
88 (Var("github_mirror") % "barback") + Var("barback_rev"), 88 (Var("github_mirror") % "barback") + Var("barback_rev"),
89 "src/dart/third_party/pkg/charcode": 89 "src/dart/third_party/pkg/charcode":
90 (Var("github_mirror") % "charcode") + Var("charcode_tag"), 90 (Var("github_mirror") % "charcode") + Var("charcode_tag"),
91 "src/dart/third_party/pkg/crypto": 91 "src/dart/third_party/pkg/crypto":
92 (Var("github_mirror") % "crypto") + Var("crypto_rev"), 92 (Var("github_mirror") % "crypto") + Var("crypto_rev"),
93 "src/dart/third_party/pkg/csslib": 93 "src/dart/third_party/pkg/csslib":
94 (Var("github_mirror") % "csslib") + Var("csslib_tag"), 94 (Var("github_mirror") % "csslib") + Var("csslib_tag"),
95 "src/dart/third_party/pkg/dart2js_info": 95 "src/dart/third_party/pkg/dart2js_info":
96 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"), 96 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_tag"),
97 "src/dart/third_party/pkg/collection": 97 "src/dart/third_party/pkg/collection":
98 (Var("github_mirror") % "collection") + Var("collection_tag"), 98 (Var("github_mirror") % "collection") + Var("collection_tag"),
99 "src/dart/third_party/pkg/glob": 99 "src/dart/third_party/pkg/glob":
100 (Var("github_mirror") % "glob") + Var("glob_rev"), 100 (Var("github_mirror") % "glob") + Var("glob_rev"),
101 "src/dart/third_party/pkg/html": 101 "src/dart/third_party/pkg/html":
102 (Var("github_mirror") % "html") + Var("html_tag"), 102 (Var("github_mirror") % "html") + Var("html_tag"),
103 "src/dart/third_party/pkg/json_rpc_2": 103 "src/dart/third_party/pkg/json_rpc_2":
104 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_rev"), 104 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_rev"),
105 "src/dart/third_party/pkg/http": 105 "src/dart/third_party/pkg/http":
106 (Var("github_mirror") % "http") + Var("http_rev"), 106 (Var("github_mirror") % "http") + Var("http_rev"),
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "download_from_google_storage", 243 "download_from_google_storage",
244 "--no_auth", 244 "--no_auth",
245 "--no_resume", 245 "--no_resume",
246 "--bucket", 246 "--bucket",
247 "dart-dependencies", 247 "dart-dependencies",
248 "--extract", 248 "--extract",
249 "-s", 249 "-s",
250 "src/dart/third_party/pkg/unittest.tar.gz.sha1", 250 "src/dart/third_party/pkg/unittest.tar.gz.sha1",
251 ], 251 ],
252 }) 252 })
OLDNEW
« no previous file with comments | « pkg/compiler/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698