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