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

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

Issue 1390533003: Update co19 test suite to commit Oct 1 2015 1d96fbbf94c534c9076f90bd4ebce6226169da48 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Undo debug edits to script Created 5 years, 1 month 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 | « tests/co19/co19-runtime.status ('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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "stack_trace_tag": "@1.2.1", 63 "stack_trace_tag": "@1.2.1",
64 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", 64 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5",
65 "test_tag": "@0.12.1", 65 "test_tag": "@0.12.1",
66 "unittest_tag": "@0.11.6", 66 "unittest_tag": "@0.11.6",
67 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", 67 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6",
68 "watcher_tag": "@0.9.5", 68 "watcher_tag": "@0.9.5",
69 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", 69 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b",
70 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", 70 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f",
71 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", 71 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec",
72 72
73 "co19_rev": "@ead3698f33d2cd41e75b6ce5d4a1203767cedd50", 73 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0",
74 "fake_async_rev": "@38614", 74 "fake_async_rev": "@38614",
75 }) 75 })
76 76
77 def massage_deps(deps): 77 def massage_deps(deps):
78 for key, value in deps.items(): 78 for key, value in deps.items():
79 if value is None: continue 79 if value is None: continue
80 80
81 if value.startswith('/trunk'): 81 if value.startswith('/trunk'):
82 deps[key] = Var("chromium_url") + value 82 deps[key] = Var("chromium_url") + value
83 continue 83 continue
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "--no_resume", 258 "--no_resume",
259 "--bucket", 259 "--bucket",
260 "dart-dependencies", 260 "dart-dependencies",
261 "--recursive", 261 "--recursive",
262 "--auto_platform", 262 "--auto_platform",
263 "--extract", 263 "--extract",
264 "--directory", 264 "--directory",
265 "src/dart/tools/sdks", 265 "src/dart/tools/sdks",
266 ], 266 ],
267 }) 267 })
OLDNEW
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698