| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "src/dart/third_party/pkg/web_components": | 180 "src/dart/third_party/pkg/web_components": |
| 181 (Var("github_mirror") % "web-components") + Var("web_components_rev"), | 181 (Var("github_mirror") % "web-components") + Var("web_components_rev"), |
| 182 "src/dart/third_party/pkg/yaml": | 182 "src/dart/third_party/pkg/yaml": |
| 183 (Var("github_mirror") % "yaml") + Var("yaml_rev"), | 183 (Var("github_mirror") % "yaml") + Var("yaml_rev"), |
| 184 | 184 |
| 185 # 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) |
| 186 "src/dart/pkg/unittest": | 186 "src/dart/pkg/unittest": |
| 187 (Var("github_mirror") % "test") + Var("unittest_tag"), | 187 (Var("github_mirror") % "test") + Var("unittest_tag"), |
| 188 | 188 |
| 189 "src/dart/third_party/WebCore": | 189 "src/dart/third_party/WebCore": |
| 190 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev") | 190 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"), |
| 191 | 191 |
| 192 "src/dart/tests/co19/src": | 192 "src/dart/tests/co19/src": |
| 193 (Var("github_mirror") % "co19") + Var("co19_rev"), | 193 (Var("github_mirror") % "co19") + Var("co19_rev"), |
| 194 | 194 |
| 195 "src/dart/third_party/zlib": | 195 "src/dart/third_party/zlib": |
| 196 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 196 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
| 197 Var("zlib_rev"), | 197 Var("zlib_rev"), |
| 198 }) | 198 }) |
| 199 | 199 |
| 200 deps_os['win'].update({ | 200 deps_os['win'].update({ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "--no_resume", | 254 "--no_resume", |
| 255 "--bucket", | 255 "--bucket", |
| 256 "dart-dependencies", | 256 "dart-dependencies", |
| 257 "--recursive", | 257 "--recursive", |
| 258 "--auto_platform", | 258 "--auto_platform", |
| 259 "--extract", | 259 "--extract", |
| 260 "--directory", | 260 "--directory", |
| 261 "src/dart/tools/sdks", | 261 "src/dart/tools/sdks", |
| 262 ], | 262 ], |
| 263 }) | 263 }) |
| OLD | NEW |