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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", | 62 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", |
63 "test_tag": "@0.12.1", | 63 "test_tag": "@0.12.1", |
64 "unittest_tag": "@0.11.6", | 64 "unittest_tag": "@0.11.6", |
65 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", | 65 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", |
66 "watcher_tag": "@0.9.5", | 66 "watcher_tag": "@0.9.5", |
67 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", | 67 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", |
68 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 68 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
69 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", | 69 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", |
70 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", | 70 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", |
71 | 71 |
72 "co19_rev": "@d4767b4caea3c5828ad8e053cd051d44a59061af", | 72 "co19_rev": "@3f0a4bc9a080a792cdf5f093147a900f99ea301f", |
73 }) | 73 }) |
74 | 74 |
75 deps.update({ | 75 deps.update({ |
76 "src": | 76 "src": |
77 Var("chromium_git") + "/dart/dartium/src.git" + "@" + | 77 Var("chromium_git") + "/dart/dartium/src.git" + "@" + |
78 Var("dartium_chromium_commit"), | 78 Var("dartium_chromium_commit"), |
79 | 79 |
80 "src/third_party/WebKit": | 80 "src/third_party/WebKit": |
81 Var("chromium_git") + "/dart/dartium/blink.git" + "@" + | 81 Var("chromium_git") + "/dart/dartium/blink.git" + "@" + |
82 Var("dartium_webkit_commit"), | 82 Var("dartium_webkit_commit"), |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 "--no_resume", | 223 "--no_resume", |
224 "--bucket", | 224 "--bucket", |
225 "dart-dependencies", | 225 "dart-dependencies", |
226 "--recursive", | 226 "--recursive", |
227 "--auto_platform", | 227 "--auto_platform", |
228 "--extract", | 228 "--extract", |
229 "--directory", | 229 "--directory", |
230 "src/dart/tools/sdks", | 230 "src/dart/tools/sdks", |
231 ], | 231 ], |
232 }) | 232 }) |
OLD | NEW |