| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 }) |
| OLD | NEW |