| 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 "source_span_rev": "@42501132e43599a151ba6727d340e44442f86c05", | 62 "source_span_rev": "@42501132e43599a151ba6727d340e44442f86c05", |
| 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 "WebCore_rev": "@4f90b41b0165f23f412cecdba07b7d81d3fbb5b5", |
| 72 | 73 |
| 73 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", | 74 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", |
| 74 }) | 75 }) |
| 75 | 76 |
| 76 def massage_deps(deps): | 77 def massage_deps(deps): |
| 77 for key, value in deps.items(): | 78 for key, value in deps.items(): |
| 78 if value is None: continue | 79 if value is None: continue |
| 79 | 80 |
| 80 if value.startswith('/trunk'): | 81 if value.startswith('/trunk'): |
| 81 deps[key] = Var("chromium_url") + value | 82 deps[key] = Var("chromium_url") + value |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "src/dart/third_party/pkg/web_components": | 180 "src/dart/third_party/pkg/web_components": |
| 180 (Var("github_mirror") % "web-components") + Var("web_components_rev"), | 181 (Var("github_mirror") % "web-components") + Var("web_components_rev"), |
| 181 "src/dart/third_party/pkg/yaml": | 182 "src/dart/third_party/pkg/yaml": |
| 182 (Var("github_mirror") % "yaml") + Var("yaml_rev"), | 183 (Var("github_mirror") % "yaml") + Var("yaml_rev"), |
| 183 | 184 |
| 184 # TODO(sigmund): should be src/dart/third_party/pkg/unittest (dartbug.com/2194
9) | 185 # TODO(sigmund): should be src/dart/third_party/pkg/unittest (dartbug.com/2194
9) |
| 185 "src/dart/pkg/unittest": | 186 "src/dart/pkg/unittest": |
| 186 (Var("github_mirror") % "test") + Var("unittest_tag"), | 187 (Var("github_mirror") % "test") + Var("unittest_tag"), |
| 187 | 188 |
| 188 "src/dart/third_party/WebCore": | 189 "src/dart/third_party/WebCore": |
| 189 "http://dart.googlecode.com/svn/third_party/WebCore", | 190 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev") |
| 190 | 191 |
| 191 "src/dart/tests/co19/src": | 192 "src/dart/tests/co19/src": |
| 192 (Var("github_mirror") % "co19") + Var("co19_rev"), | 193 (Var("github_mirror") % "co19") + Var("co19_rev"), |
| 193 | 194 |
| 194 "src/dart/third_party/zlib": | 195 "src/dart/third_party/zlib": |
| 195 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 196 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
| 196 Var("zlib_rev"), | 197 Var("zlib_rev"), |
| 197 }) | 198 }) |
| 198 | 199 |
| 199 deps_os['win'].update({ | 200 deps_os['win'].update({ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 "--no_resume", | 254 "--no_resume", |
| 254 "--bucket", | 255 "--bucket", |
| 255 "dart-dependencies", | 256 "dart-dependencies", |
| 256 "--recursive", | 257 "--recursive", |
| 257 "--auto_platform", | 258 "--auto_platform", |
| 258 "--extract", | 259 "--extract", |
| 259 "--directory", | 260 "--directory", |
| 260 "src/dart/tools/sdks", | 261 "src/dart/tools/sdks", |
| 261 ], | 262 ], |
| 262 }) | 263 }) |
| OLD | NEW |