OLD | NEW |
| 1 |
1 import gclient_utils | 2 import gclient_utils |
2 import os | 3 import os |
3 | 4 |
4 path = gclient_utils.FindGclientRoot(os.getcwd()) | 5 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. | 6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP
S.chromium')) # Include proper Chromium DEPS. |
6 | 7 |
7 # 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. |
8 | 9 |
9 vars.update({ | 10 vars.update({ |
10 "chromium_url": "http://src.chromium.org/svn", | 11 "chromium_url": "http://src.chromium.org/svn", |
11 "dartium_base": "http://src.chromium.org", | 12 "dartium_base": "http://src.chromium.org", |
12 "dartium_chromium_branch": "master", | 13 "dartium_chromium_branch": "master", |
13 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff", | 14 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff", |
14 "chromium_base_revision": "297060", | 15 "chromium_base_revision": "297060", |
15 "dartium_webkit_branch": "/blink/branches/dart/2171_3/dartium", | 16 "dartium_webkit_branch": "/blink/branches/dart/dartium", |
16 "dartium_webkit_revision": "201240", | 17 "dartium_webkit_revision": "201887", |
17 | 18 |
18 # We use mirrors of all github repos to guarantee reproducibility and | 19 # We use mirrors of all github repos to guarantee reproducibility and |
19 # consistency between what users see and what the bots see. | 20 # 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 need the mirrors to not have 100+ bots pulling github constantly. |
21 # We mirror our github repos on chromium git servers. | 22 # We mirror our github repos on chromium git servers. |
22 # DO NOT use this var if you don't see a mirror here: | 23 # DO NOT use this var if you don't see a mirror here: |
23 # https://chromium.googlesource.com/ | 24 # https://chromium.googlesource.com/ |
24 # named like: | 25 # named like: |
25 # external/github.com/dart-lang/NAME | 26 # external/github.com/dart-lang/NAME |
26 # It is ok to add a dependency directly on dart-lang (dart-lang only) | 27 # It is ok to add a dependency directly on dart-lang (dart-lang only) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "stack_trace_tag": "@1.2.1", | 62 "stack_trace_tag": "@1.2.1", |
62 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", | 63 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", |
63 "test_tag": "@0.12.1", | 64 "test_tag": "@0.12.1", |
64 "unittest_tag": "@0.11.6", | 65 "unittest_tag": "@0.11.6", |
65 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", | 66 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", |
66 "watcher_tag": "@0.9.5", | 67 "watcher_tag": "@0.9.5", |
67 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", | 68 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", |
68 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 69 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
69 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", | 70 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", |
70 | 71 |
71 "co19_rev": "@f95f109fea67127a220958794ef5200a63cb454c", | 72 "co19_rev": "@fad777939a2b891c0a79b69a4d79c914049c69b0", |
72 "fake_async_rev": "@38614", | 73 "fake_async_rev": "@38614", |
73 }) | 74 }) |
74 | 75 |
75 def massage_deps(deps): | 76 def massage_deps(deps): |
76 for key, value in deps.items(): | 77 for key, value in deps.items(): |
77 if value is None: continue | 78 if value is None: continue |
78 | 79 |
79 if value.startswith('/trunk'): | 80 if value.startswith('/trunk'): |
80 deps[key] = Var("chromium_url") + value | 81 deps[key] = Var("chromium_url") + value |
81 continue | 82 continue |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 "--no_resume", | 253 "--no_resume", |
253 "--bucket", | 254 "--bucket", |
254 "dart-dependencies", | 255 "dart-dependencies", |
255 "--recursive", | 256 "--recursive", |
256 "--auto_platform", | 257 "--auto_platform", |
257 "--extract", | 258 "--extract", |
258 "--directory", | 259 "--directory", |
259 "src/dart/tools/sdks", | 260 "src/dart/tools/sdks", |
260 ], | 261 ], |
261 }) | 262 }) |
OLD | NEW |