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

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

Issue 1289303002: Update dartium DEPS to use co19 from github. (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",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "stack_trace_tag": "@1.2.1", 46 "stack_trace_tag": "@1.2.1",
47 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", 47 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5",
48 "test_tag": "@0.12.1", 48 "test_tag": "@0.12.1",
49 "unittest_tag": "@0.11.6", 49 "unittest_tag": "@0.11.6",
50 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", 50 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6",
51 "watcher_tag": "@0.9.5", 51 "watcher_tag": "@0.9.5",
52 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", 52 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b",
53 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", 53 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f",
54 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", 54 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec",
55 55
56 "co19_rev": "@801", 56 "co19_rev": "@f95f109fea67127a220958794ef5200a63cb454c",
terry 2015/08/14 16:07:48 The SHA1 should be 34010003cd3e74085084c92816247b5
57 "fake_async_rev": "@38614", 57 "fake_async_rev": "@38614",
58 }) 58 })
59 59
60 def massage_deps(deps): 60 def massage_deps(deps):
61 for key, value in deps.items(): 61 for key, value in deps.items():
62 if value is None: continue 62 if value is None: continue
63 63
64 if value.startswith('/trunk'): 64 if value.startswith('/trunk'):
65 deps[key] = Var("chromium_url") + value 65 deps[key] = Var("chromium_url") + value
66 continue 66 continue
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "https://github.com/dart-lang/web-components.git" + 170 "https://github.com/dart-lang/web-components.git" +
171 Var("web_components_rev"), 171 Var("web_components_rev"),
172 172
173 "src/dart/third_party/WebCore": 173 "src/dart/third_party/WebCore":
174 "http://dart.googlecode.com/svn/third_party/WebCore", 174 "http://dart.googlecode.com/svn/third_party/WebCore",
175 175
176 "src/dart/third_party/pkg/fake_async": 176 "src/dart/third_party/pkg/fake_async":
177 "http://dart.googlecode.com/svn/third_party/fake_async" + 177 "http://dart.googlecode.com/svn/third_party/fake_async" +
178 Var("fake_async_rev"), 178 Var("fake_async_rev"),
179 179
180 "src/dart/tests/co19/src": ((Var("googlecode_url") % "co19") + 180 "src/dart/tests/co19/src":
181 "/trunk/co19/tests/co19/src" + Var("co19_rev")), 181 "https://github.com/dart-lang/co19.git" + Var("co19_rev"),
182 182
183 "src/dart/third_party/zlib": 183 "src/dart/third_party/zlib":
184 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + 184 Var("chromium_git") + "/chromium/src/third_party/zlib.git" +
185 Var("zlib_rev"), 185 Var("zlib_rev"),
186 }) 186 })
187 187
188 deps_os['win'].update({ 188 deps_os['win'].update({
189 "src/chrome/tools/test/reference_build/chrome_win": None 189 "src/chrome/tools/test/reference_build/chrome_win": None
190 }) 190 })
191 deps_os['mac'].update({ 191 deps_os['mac'].update({
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "download_from_google_storage", 226 "download_from_google_storage",
227 "--no_auth", 227 "--no_auth",
228 "--no_resume", 228 "--no_resume",
229 "--bucket", 229 "--bucket",
230 "dart-dependencies", 230 "dart-dependencies",
231 "-d", 231 "-d",
232 "-r", 232 "-r",
233 "src/dart/tools/testing/bin", 233 "src/dart/tools/testing/bin",
234 ], 234 ],
235 }) 235 })
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