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

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

Issue 1308403006: Switch dartium.deps to use the googlesource.com mirror of github/dart-lang repos. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 import gclient_utils 1 import gclient_utils
2 import os 2 import os
3 3
4 path = gclient_utils.FindGclientRoot(os.getcwd()) 4 path = gclient_utils.FindGclientRoot(os.getcwd())
5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS. 5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS.
6 6
7 # Now we need to override some settings and add some new ones. 7 # Now we need to override some settings and add some new ones.
8 8
9 vars.update({ 9 vars.update({
10 "chromium_url": "http://src.chromium.org/svn", 10 "chromium_url": "http://src.chromium.org/svn",
11 "dartium_base": "http://src.chromium.org", 11 "dartium_base": "http://src.chromium.org",
12 "dartium_chromium_branch": "master", 12 "dartium_chromium_branch": "master",
13 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff", 13 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff",
14 "chromium_base_revision": "297060", 14 "chromium_base_revision": "297060",
15 "dartium_webkit_branch": "/blink/branches/dart/2171_3/dartium", 15 "dartium_webkit_branch": "/blink/branches/dart/2171_3/dartium",
16 "dartium_webkit_revision": "199763", 16 "dartium_webkit_revision": "199763",
17 17
18 # We use mirrors of all github repos to guarantee reproducibility and
19 # consistency between what users see and what the bots see.
20 # We need the mirrors to not have 100+ bots pulling github constantly.
21 # We mirror our github repos on chromium git servers.
22 # DO NOT use this var if you don't see a mirror here:
23 # https://chromium.googlesource.com/
24 # named like:
25 # external/github.com/dart-lang/NAME
26 # It is ok to add a dependency directly on dart-lang (dart-lang only)
27 # github repo until the mirror has been created, but please do file a bug
28 # against infra to make that happen.
29 "github_mirror":
30 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git",
31
18 "args_tag": "@0.13.0", 32 "args_tag": "@0.13.0",
19 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", 33 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51",
20 "charcode_tag": "@1.1.0", 34 "charcode_tag": "@1.1.0",
21 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", 35 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e",
22 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 36 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d",
23 "csslib_tag" : "@0.12.0", 37 "csslib_tag" : "@0.12.0",
24 "dart2js_info_rev" : "@bad01369f1f605ab688d505c135db54de927318f", 38 "dart2js_info_rev" : "@bad01369f1f605ab688d505c135db54de927318f",
25 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", 39 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd",
26 "html_tag" : "@0.12.1+1", 40 "html_tag" : "@0.12.1+1",
27 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7", 41 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 94
81 deps.update({ 95 deps.update({
82 "src": 96 "src":
83 Var("chromium_git") + "/dart/dartium/src.git" + "@" + 97 Var("chromium_git") + "/dart/dartium/src.git" + "@" +
84 Var("dartium_chromium_commit"), 98 Var("dartium_chromium_commit"),
85 99
86 "src/third_party/WebKit": 100 "src/third_party/WebKit":
87 Var("dartium_base") + Var("dartium_webkit_branch") + "@" + 101 Var("dartium_base") + Var("dartium_webkit_branch") + "@" +
88 Var("dartium_webkit_revision"), 102 Var("dartium_webkit_revision"),
89 103
90 # Needed to run pub. 104 "src/dart/third_party/pkg/args":
105 (Var("github_mirror") % "args") + Var("args_tag"),
91 "src/dart/third_party/pkg/barback": 106 "src/dart/third_party/pkg/barback":
92 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), 107 (Var("github_mirror") % "barback") + Var("barback_rev"),
108 "src/dart/third_party/pkg/charcode":
109 (Var("github_mirror") % "charcode") + Var("charcode_tag"),
93 "src/dart/third_party/pkg/crypto": 110 "src/dart/third_party/pkg/crypto":
94 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), 111 (Var("github_mirror") % "crypto") + Var("crypto_rev"),
95 "src/dart/third_party/pkg/csslib": 112 "src/dart/third_party/pkg/csslib":
96 "https://github.com/dart-lang/csslib.git" + Var("csslib_tag"), 113 (Var("github_mirror") % "csslib") + Var("csslib_tag"),
97 "src/dart/third_party/pkg/dart2js_info": 114 "src/dart/third_party/pkg/dart2js_info":
98 "https://github.com/dart-lang/dart2js_info.git" + Var("dart2js_info_rev"), 115 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"),
99 "src/dart/third_party/pkg/collection": 116 "src/dart/third_party/pkg/collection":
100 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), 117 (Var("github_mirror") % "collection") + Var("collection_rev"),
101 "src/dart/third_party/pkg/glob": 118 "src/dart/third_party/pkg/glob":
102 "https://github.com/dart-lang/glob.git" + Var("glob_rev"), 119 (Var("github_mirror") % "glob") + Var("glob_rev"),
103 "src/dart/third_party/pkg/html": 120 "src/dart/third_party/pkg/html":
104 "https://github.com/dart-lang/html.git" + Var("html_tag"), 121 (Var("github_mirror") % "html") + Var("html_tag"),
105 "src/dart/third_party/pkg/json_rpc_2": 122 "src/dart/third_party/pkg/json_rpc_2":
106 "https://github.com/dart-lang/json_rpc_2.git" + Var("json_rpc_2_rev"), 123 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_rev"),
107 "src/dart/third_party/pkg/http": 124 "src/dart/third_party/pkg/http":
108 "https://github.com/dart-lang/http.git" + Var("http_rev"), 125 (Var("github_mirror") % "http") + Var("http_rev"),
109 "src/dart/third_party/pkg/http_multi_server": 126 "src/dart/third_party/pkg/http_multi_server":
110 "https://github.com/dart-lang/http_multi_server.git" + 127 (Var("github_mirror") % "http_multi_server") +
111 Var("http_multi_server_tag"), 128 Var("http_multi_server_tag"),
112 "src/dart/third_party/pkg/http_parser": 129 "src/dart/third_party/pkg/http_parser":
113 "https://github.com/dart-lang/http_parser.git" + Var("http_parser_rev"), 130 (Var("github_mirror") % "http_parser") + Var("http_parser_rev"),
114 "src/dart/third_party/pkg/http_throttle": 131 "src/dart/third_party/pkg/http_throttle":
115 "https://github.com/dart-lang/http_throttle.git" + Var("http_throttle_rev" ), 132 (Var("github_mirror") % "http_throttle") + Var("http_throttle_rev"),
116 "src/dart/third_party/pkg/logging": 133 "src/dart/third_party/pkg/logging":
117 "https://github.com/dart-lang/logging.git" + Var("logging_rev"), 134 (Var("github_mirror") % "logging") + Var("logging_rev"),
135 "src/dart/third_party/pkg/matcher":
136 (Var("github_mirror") % "matcher") + Var("matcher_tag"),
137 "src/dart/third_party/pkg/metatest":
138 (Var("github_mirror") % "metatest") + Var("metatest_rev"),
118 "src/dart/third_party/pkg/mime": 139 "src/dart/third_party/pkg/mime":
119 "https://github.com/dart-lang/mime.git" + Var("mime_rev"), 140 (Var("github_mirror") % "mime") + Var("mime_rev"),
120 "src/dart/third_party/pkg/oauth2": 141 "src/dart/third_party/pkg/oauth2":
121 "https://github.com/dart-lang/oauth2.git" + Var("oauth2_rev"), 142 (Var("github_mirror") % "oauth2") + Var("oauth2_rev"),
143 "src/dart/third_party/observatory_pub_packages":
144 (Var("github_mirror") % "observatory_pub_packages") +
145 Var("observatory_pub_packages_rev"),
146 "src/dart/third_party/pkg/package_config":
147 (Var("github_mirror") % "package_config") + Var("package_config_rev"),
148 "src/dart/third_party/pkg/path":
149 (Var("github_mirror") % "path") + Var("path_rev"),
122 "src/dart/third_party/pkg/plugin": 150 "src/dart/third_party/pkg/plugin":
123 "https://github.com/dart-lang/plugin.git" + Var("plugin_tag"), 151 (Var("github_mirror") % "plugin") + Var("plugin_tag"),
124 "src/dart/third_party/pkg/pool": 152 "src/dart/third_party/pkg/pool":
125 "https://github.com/dart-lang/pool.git" + Var("pool_rev"), 153 (Var("github_mirror") % "pool") + Var("pool_rev"),
126 "src/dart/third_party/pkg/pub": 154 "src/dart/third_party/pkg/pub":
127 "https://github.com/dart-lang/pub.git" + Var("pub_rev"), 155 (Var("github_mirror") % "pub") + Var("pub_rev"),
128 "src/dart/third_party/pkg/pub_semver": 156 "src/dart/third_party/pkg/pub_semver":
129 "https://github.com/dart-lang/pub_semver.git" + Var("pub_semver_tag"), 157 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"),
130 "src/dart/third_party/pkg/shelf": 158 "src/dart/third_party/pkg/shelf":
131 "https://github.com/dart-lang/shelf.git" + Var("shelf_rev"), 159 (Var("github_mirror") % "shelf") + Var("shelf_rev"),
132 "src/dart/third_party/pkg/shelf_web_socket": 160 "src/dart/third_party/pkg/shelf_web_socket":
133 "https://github.com/dart-lang/shelf_web_socket.git" + 161 (Var("github_mirror") % "shelf_web_socket") + Var("shelf_web_socket_rev"),
134 Var("shelf_web_socket_rev"), 162 "src/dart/third_party/pkg/source_span":
163 (Var("github_mirror") % "source_span") + Var("source_span_rev"),
164 "src/dart/third_party/pkg/stack_trace":
165 (Var("github_mirror") % "stack_trace") + Var("stack_trace_tag"),
166 "src/dart/third_party/pkg/string_scanner":
167 (Var("github_mirror") % "string_scanner") + Var("string_scanner_rev"),
168 "src/dart/third_party/pkg/test":
169 (Var("github_mirror") % "test") + Var("test_tag"),
135 "src/dart/third_party/pkg/utf": 170 "src/dart/third_party/pkg/utf":
136 "https://github.com/dart-lang/utf.git" + Var("utf_rev"), 171 (Var("github_mirror") % "utf") + Var("utf_rev"),
137 "src/dart/third_party/pkg/watcher": 172 "src/dart/third_party/pkg/watcher":
138 "https://github.com/dart-lang/watcher.git" + Var("watcher_tag"), 173 (Var("github_mirror") % "watcher") + Var("watcher_tag"),
174 "src/dart/third_party/pkg/web_components":
175 (Var("github_mirror") % "web-components") + Var("web_components_rev"),
139 "src/dart/third_party/pkg/yaml": 176 "src/dart/third_party/pkg/yaml":
140 "https://github.com/dart-lang/yaml.git" + Var("yaml_rev"), 177 (Var("github_mirror") % "yaml") + Var("yaml_rev"),
141 178
142 "src/dart/third_party/pkg/args":
143 "https://github.com/dart-lang/args.git" + Var("args_tag"),
144 "src/dart/third_party/pkg/charcode":
145 "https://github.com/dart-lang/charcode.git" + Var("charcode_tag"),
146 "src/dart/third_party/pkg/http_parser":
147 "https://github.com/dart-lang/http_parser.git" + Var("http_parser_rev"),
148 "src/dart/third_party/pkg/matcher":
149 "https://github.com/dart-lang/matcher.git" + Var("matcher_tag"),
150 "src/dart/third_party/pkg/metatest":
151 "https://github.com/dart-lang/metatest.git" + Var("metatest_rev"),
152 "src/dart/third_party/observatory_pub_packages":
153 "https://github.com/dart-lang/observatory_pub_packages.git"
154 + Var("observatory_pub_packages_rev"),
155 "src/dart/third_party/pkg/path":
156 "https://github.com/dart-lang/path.git" + Var("path_rev"),
157 "src/dart/third_party/pkg/package_config":
158 "https://github.com/dart-lang/package_config.git" +
159 Var("package_config_rev"),
160 "src/dart/third_party/pkg/source_span":
161 "https://github.com/dart-lang/source_span.git" + Var("source_span_rev"),
162 "src/dart/third_party/pkg/stack_trace":
163 "https://github.com/dart-lang/stack_trace.git" + Var("stack_trace_tag"),
164 "src/dart/third_party/pkg/string_scanner":
165 "https://github.com/dart-lang/string_scanner.git" +
166 Var("string_scanner_rev"),
167 "src/dart/third_party/pkg/test":
168 "https://github.com/dart-lang/test.git" + Var("test_tag"),
169 # TODO(sigmund): should be src/dart/third_party/pkg/unittest (dartbug.com/2194 9) 179 # TODO(sigmund): should be src/dart/third_party/pkg/unittest (dartbug.com/2194 9)
170 "src/dart/pkg/unittest": 180 "src/dart/pkg/unittest":
171 "https://github.com/dart-lang/test.git" + Var("unittest_tag"), 181 (Var("github_mirror") % "test") + Var("unittest_tag"),
172 "src/dart/third_party/pkg/web_components":
173 "https://github.com/dart-lang/web-components.git" +
174 Var("web_components_rev"),
175 182
176 "src/dart/third_party/WebCore": 183 "src/dart/third_party/WebCore":
177 "http://dart.googlecode.com/svn/third_party/WebCore", 184 "http://dart.googlecode.com/svn/third_party/WebCore",
178 185
179 "src/dart/third_party/pkg/fake_async": 186 "src/dart/third_party/pkg/fake_async":
180 "http://dart.googlecode.com/svn/third_party/fake_async" + 187 "http://dart.googlecode.com/svn/third_party/fake_async" +
181 Var("fake_async_rev"), 188 Var("fake_async_rev"),
182 189
183 "src/dart/tests/co19/src": 190 "src/dart/tests/co19/src":
184 "https://github.com/dart-lang/co19.git" + Var("co19_rev"), 191 (Var("github_mirror") % "co19") + Var("co19_rev"),
185 192
186 "src/dart/third_party/zlib": 193 "src/dart/third_party/zlib":
187 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + 194 Var("chromium_git") + "/chromium/src/third_party/zlib.git" +
188 Var("zlib_rev"), 195 Var("zlib_rev"),
189 }) 196 })
190 197
191 deps_os['win'].update({ 198 deps_os['win'].update({
192 "src/chrome/tools/test/reference_build/chrome_win": None 199 "src/chrome/tools/test/reference_build/chrome_win": None
193 }) 200 })
194 deps_os['mac'].update({ 201 deps_os['mac'].update({
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 "download_from_google_storage", 236 "download_from_google_storage",
230 "--no_auth", 237 "--no_auth",
231 "--no_resume", 238 "--no_resume",
232 "--bucket", 239 "--bucket",
233 "dart-dependencies", 240 "dart-dependencies",
234 "-d", 241 "-d",
235 "-r", 242 "-r",
236 "src/dart/tools/testing/bin", 243 "src/dart/tools/testing/bin",
237 ], 244 ],
238 }) 245 })
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