OLD | NEW |
1 import gclient_utils | 1 import gclient_utils |
2 import os | 2 import os |
3 | 3 |
4 path = gclient_utils.FindGclientRoot(os.getcwd()) | 4 path = gclient_utils.FindGclientRoot(os.getcwd()) |
5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP
S.chromium')) # Include proper Chromium DEPS. | 5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP
S.chromium')) # Include proper Chromium DEPS. |
6 | 6 |
7 # Now we need to override some settings and add some new ones. | 7 # Now we need to override some settings and add some new ones. |
8 | 8 |
9 vars.update({ | 9 vars.update({ |
10 "chromium_url": "http://src.chromium.org/svn", | 10 "chromium_url": "http://src.chromium.org/svn", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 # Needed to run pub. | 87 # Needed to run pub. |
88 "src/dart/third_party/pkg/barback": | 88 "src/dart/third_party/pkg/barback": |
89 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), | 89 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), |
90 "src/dart/third_party/pkg/crypto": | 90 "src/dart/third_party/pkg/crypto": |
91 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), | 91 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), |
92 "src/dart/third_party/pkg/collection": | 92 "src/dart/third_party/pkg/collection": |
93 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), | 93 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), |
94 "src/dart/third_party/pkg/glob": | 94 "src/dart/third_party/pkg/glob": |
95 "https://github.com/dart-lang/glob.git" + Var("glob_rev"), | 95 "https://github.com/dart-lang/glob.git" + Var("glob_rev"), |
96 "src/dart/third_party/pkg/html": | 96 "src/dart/third_party/pkg/html": |
97 "https://github.com/dart-lang/html.”git + Var("html_tag"), | 97 "https://github.com/dart-lang/html.git” + Var("html_tag"), |
98 "src/dart/third_party/pkg/json_rpc_2": | 98 "src/dart/third_party/pkg/json_rpc_2": |
99 "https://github.com/dart-lang/json_rpc_2.git" + Var("json_rpc_2_rev"), | 99 "https://github.com/dart-lang/json_rpc_2.git" + Var("json_rpc_2_rev"), |
100 "src/dart/third_party/pkg/http": | 100 "src/dart/third_party/pkg/http": |
101 "https://github.com/dart-lang/http.git" + Var("http_rev"), | 101 "https://github.com/dart-lang/http.git" + Var("http_rev"), |
102 "src/dart/third_party/pkg/http_multi_server": | 102 "src/dart/third_party/pkg/http_multi_server": |
103 "https://github.com/dart-lang/http_multi_server.git" + | 103 "https://github.com/dart-lang/http_multi_server.git" + |
104 Var("http_multi_server_tag"), | 104 Var("http_multi_server_tag"), |
105 "src/dart/third_party/pkg/http_parser": | 105 "src/dart/third_party/pkg/http_parser": |
106 "https://github.com/dart-lang/http_parser.git" + Var("http_parser_rev"), | 106 "https://github.com/dart-lang/http_parser.git" + Var("http_parser_rev"), |
107 "src/dart/third_party/pkg/http_throttle": | 107 "src/dart/third_party/pkg/http_throttle": |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 "download_from_google_storage", | 219 "download_from_google_storage", |
220 "--no_auth", | 220 "--no_auth", |
221 "--no_resume", | 221 "--no_resume", |
222 "--bucket", | 222 "--bucket", |
223 "dart-dependencies", | 223 "dart-dependencies", |
224 "-d", | 224 "-d", |
225 "-r", | 225 "-r", |
226 "src/dart/tools/testing/bin", | 226 "src/dart/tools/testing/bin", |
227 ], | 227 ], |
228 }) | 228 }) |
OLD | NEW |