| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 # The dart_root is the root of our sdk checkout. This is normally | 6 # The dart_root is the root of our sdk checkout. This is normally |
| 7 # simply sdk, but if using special gclient specs it can be different. | 7 # simply sdk, but if using special gclient specs it can be different. |
| 8 "dart_root": "sdk", | 8 "dart_root": "sdk", |
| 9 | 9 |
| 10 # The svn location to pull out dependencies from | 10 # The svn location to pull out dependencies from |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "barback-0.14.1_rev": "@38525", | 112 "barback-0.14.1_rev": "@38525", |
| 113 "source_maps-0.9.4_rev": "@38524", | 113 "source_maps-0.9.4_rev": "@38524", |
| 114 } | 114 } |
| 115 | 115 |
| 116 deps = { | 116 deps = { |
| 117 # Stuff needed for GYP to run. | 117 # Stuff needed for GYP to run. |
| 118 Var("dart_root") + "/third_party/gyp": | 118 Var("dart_root") + "/third_party/gyp": |
| 119 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 119 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
| 120 | 120 |
| 121 Var("dart_root") + "/tests/co19/src": | 121 Var("dart_root") + "/tests/co19/src": |
| 122 "https://github.com/dart-lang/co19.git" + Var("co19_rev"), | 122 (Var("github_mirror") % "co19") + Var("co19_rev"), |
| 123 | 123 |
| 124 Var("dart_root") + "/third_party/nss": | 124 Var("dart_root") + "/third_party/nss": |
| 125 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), | 125 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), |
| 126 | 126 |
| 127 Var("dart_root") + "/third_party/sqlite": | 127 Var("dart_root") + "/third_party/sqlite": |
| 128 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + | 128 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + |
| 129 Var("sqlite_rev"), | 129 Var("sqlite_rev"), |
| 130 | 130 |
| 131 Var("dart_root") + "/third_party/zlib": | 131 Var("dart_root") + "/third_party/zlib": |
| 132 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 132 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 Var("dart_root") + "/third_party/pkg/analyzer_cli": | 177 Var("dart_root") + "/third_party/pkg/analyzer_cli": |
| 178 (Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_rev"), | 178 (Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_rev"), |
| 179 Var("dart_root") + "/third_party/pkg/args": | 179 Var("dart_root") + "/third_party/pkg/args": |
| 180 (Var("github_mirror") % "args") + Var("args_tag"), | 180 (Var("github_mirror") % "args") + Var("args_tag"), |
| 181 Var("dart_root") + "/third_party/pkg/async_await": | 181 Var("dart_root") + "/third_party/pkg/async_await": |
| 182 (Var("github_mirror") % "async_await") + Var("async_await_rev"), | 182 (Var("github_mirror") % "async_await") + Var("async_await_rev"), |
| 183 Var("dart_root") + "/third_party/pkg/barback": | 183 Var("dart_root") + "/third_party/pkg/barback": |
| 184 (Var("github_mirror") % "barback") + Var("barback_rev"), | 184 (Var("github_mirror") % "barback") + Var("barback_rev"), |
| 185 Var("dart_root") + "/third_party/pkg/charcode": | 185 Var("dart_root") + "/third_party/pkg/charcode": |
| 186 "https://github.com/dart-lang/charcode.git" + Var("charcode_tag"), | 186 (Var("github_mirror") % "charcode") + Var("charcode_tag"), |
| 187 Var("dart_root") + "/third_party/pkg/cli_util": | 187 Var("dart_root") + "/third_party/pkg/cli_util": |
| 188 "https://github.com/dart-lang/cli_util.git" + Var("cli_util_tag"), | 188 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"), |
| 189 Var("dart_root") + "/third_party/pkg/collection": | 189 Var("dart_root") + "/third_party/pkg/collection": |
| 190 (Var("github_mirror") % "collection") + Var("collection_rev"), | 190 (Var("github_mirror") % "collection") + Var("collection_rev"), |
| 191 Var("dart_root") + "/third_party/pkg/crypto": | 191 Var("dart_root") + "/third_party/pkg/crypto": |
| 192 (Var("github_mirror") % "crypto") + Var("crypto_rev"), | 192 (Var("github_mirror") % "crypto") + Var("crypto_rev"), |
| 193 Var("dart_root") + "/third_party/pkg/csslib": | 193 Var("dart_root") + "/third_party/pkg/csslib": |
| 194 (Var("github_mirror") % "csslib") + Var("csslib_tag"), | 194 (Var("github_mirror") % "csslib") + Var("csslib_tag"), |
| 195 Var("dart_root") + "/third_party/pkg_tested/dart_style": | 195 Var("dart_root") + "/third_party/pkg_tested/dart_style": |
| 196 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), | 196 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), |
| 197 Var("dart_root") + "/third_party/pkg/glob": | 197 Var("dart_root") + "/third_party/pkg/glob": |
| 198 (Var("github_mirror") % "glob") + Var("glob_rev"), | 198 (Var("github_mirror") % "glob") + Var("glob_rev"), |
| (...skipping 11 matching lines...) Expand all Loading... |
| 210 Var("http_throttle_rev"), | 210 Var("http_throttle_rev"), |
| 211 Var("dart_root") + "/third_party/pkg/intl": | 211 Var("dart_root") + "/third_party/pkg/intl": |
| 212 (Var("github_mirror") % "intl") + Var("intl_rev"), | 212 (Var("github_mirror") % "intl") + Var("intl_rev"), |
| 213 Var("dart_root") + "/third_party/pkg/json_rpc_2": | 213 Var("dart_root") + "/third_party/pkg/json_rpc_2": |
| 214 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_rev"), | 214 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_rev"), |
| 215 Var("dart_root") + "/third_party/pkg/linter": | 215 Var("dart_root") + "/third_party/pkg/linter": |
| 216 (Var("github_mirror") % "linter") + Var("linter_tag"), | 216 (Var("github_mirror") % "linter") + Var("linter_tag"), |
| 217 Var("dart_root") + "/third_party/pkg/logging": | 217 Var("dart_root") + "/third_party/pkg/logging": |
| 218 (Var("github_mirror") % "logging") + Var("logging_rev"), | 218 (Var("github_mirror") % "logging") + Var("logging_rev"), |
| 219 Var("dart_root") + "/third_party/pkg/markdown": | 219 Var("dart_root") + "/third_party/pkg/markdown": |
| 220 "https://github.com/dpeek/dart-markdown.git" + Var("markdown_rev"), | 220 "https://chromium.googlesource.com/external/github.com" + |
| 221 "/dpeek/dart-markdown.git" + Var("markdown_rev"), |
| 221 Var("dart_root") + "/third_party/pkg/matcher": | 222 Var("dart_root") + "/third_party/pkg/matcher": |
| 222 (Var("github_mirror") % "matcher") + Var("matcher_tag"), | 223 (Var("github_mirror") % "matcher") + Var("matcher_tag"), |
| 223 Var("dart_root") + "/third_party/pkg/metatest": | 224 Var("dart_root") + "/third_party/pkg/metatest": |
| 224 (Var("github_mirror") % "metatest") + Var("metatest_rev"), | 225 (Var("github_mirror") % "metatest") + Var("metatest_rev"), |
| 225 Var("dart_root") + "/third_party/pkg/mime": | 226 Var("dart_root") + "/third_party/pkg/mime": |
| 226 (Var("github_mirror") % "mime") + Var("mime_rev"), | 227 (Var("github_mirror") % "mime") + Var("mime_rev"), |
| 227 Var("dart_root") + "/third_party/pkg/oauth2": | 228 Var("dart_root") + "/third_party/pkg/oauth2": |
| 228 (Var("github_mirror") % "oauth2") + Var("oauth2_rev"), | 229 (Var("github_mirror") % "oauth2") + Var("oauth2_rev"), |
| 229 Var("dart_root") + "/third_party/pkg/observe": | 230 Var("dart_root") + "/third_party/pkg/observe": |
| 230 (Var("github_mirror") % "observe") + Var("observe_rev"), | 231 (Var("github_mirror") % "observe") + Var("observe_rev"), |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 Var("dart_root") + "/third_party/pkg/usage": | 274 Var("dart_root") + "/third_party/pkg/usage": |
| 274 (Var("github_mirror") % "usage") + Var("usage_rev"), | 275 (Var("github_mirror") % "usage") + Var("usage_rev"), |
| 275 Var("dart_root") + "/third_party/pkg/utf": | 276 Var("dart_root") + "/third_party/pkg/utf": |
| 276 (Var("github_mirror") % "utf") + Var("utf_rev"), | 277 (Var("github_mirror") % "utf") + Var("utf_rev"), |
| 277 Var("dart_root") + "/third_party/pkg/watcher": | 278 Var("dart_root") + "/third_party/pkg/watcher": |
| 278 (Var("github_mirror") % "watcher") + Var("watcher_tag"), | 279 (Var("github_mirror") % "watcher") + Var("watcher_tag"), |
| 279 Var("dart_root") + "/third_party/pkg/web_components": | 280 Var("dart_root") + "/third_party/pkg/web_components": |
| 280 (Var("github_mirror") % "web-components") + | 281 (Var("github_mirror") % "web-components") + |
| 281 Var("web_components_rev"), | 282 Var("web_components_rev"), |
| 282 Var("dart_root") + "/third_party/pkg/when": | 283 Var("dart_root") + "/third_party/pkg/when": |
| 283 "https://github.com/dart-lang/when.git" + Var("when_tag"), | 284 (Var("github_mirror") % "when") + Var("when_tag"), |
| 284 Var("dart_root") + "/third_party/pkg/which": | 285 Var("dart_root") + "/third_party/pkg/which": |
| 285 "https://github.com/dart-lang/which.git"+ Var("which_tag"), | 286 (Var("github_mirror") % "which") + Var("which_tag"), |
| 286 Var("dart_root") + "/third_party/pkg/yaml": | 287 Var("dart_root") + "/third_party/pkg/yaml": |
| 287 (Var("github_mirror") % "yaml") + Var("yaml_rev"), | 288 (Var("github_mirror") % "yaml") + Var("yaml_rev"), |
| 288 | 289 |
| 289 # These specific versions of barback and source_maps are used for testing and | 290 # These specific versions of barback and source_maps are used for testing and |
| 290 # should be pulled from bleeding_edge even on channels. | 291 # should be pulled from bleeding_edge even on channels. |
| 291 Var("dart_root") + "/third_party/pkg/barback-0.13.0": | 292 Var("dart_root") + "/third_party/pkg/barback-0.13.0": |
| 292 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.13.0_rev"), | 293 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.13.0_rev"), |
| 293 Var("dart_root") + "/third_party/pkg/barback-0.14.0+3": | 294 Var("dart_root") + "/third_party/pkg/barback-0.14.0+3": |
| 294 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.14.0_rev"), | 295 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.14.0_rev"), |
| 295 Var("dart_root") + "/third_party/pkg/barback-0.14.1+4": | 296 Var("dart_root") + "/third_party/pkg/barback-0.14.1+4": |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 '--no_auth', | 335 '--no_auth', |
| 335 '--no_resume', | 336 '--no_resume', |
| 336 '--bucket', | 337 '--bucket', |
| 337 'dart-dependencies', | 338 'dart-dependencies', |
| 338 '-d', | 339 '-d', |
| 339 '-r', | 340 '-r', |
| 340 Var('dart_root') + '/tools/testing/bin', | 341 Var('dart_root') + '/tools/testing/bin', |
| 341 ], | 342 ], |
| 342 }, | 343 }, |
| 343 ] | 344 ] |
| OLD | NEW |