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