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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "src/dart/third_party/pkg/http_throttle": | 102 "src/dart/third_party/pkg/http_throttle": |
103 "https://github.com/dart-lang/http_throttle.git" + Var("http_throttle_rev"
), | 103 "https://github.com/dart-lang/http_throttle.git" + Var("http_throttle_rev"
), |
104 "src/dart/third_party/pkg/mime": | 104 "src/dart/third_party/pkg/mime": |
105 "https://github.com/dart-lang/mime.git" + Var("mime_rev"), | 105 "https://github.com/dart-lang/mime.git" + Var("mime_rev"), |
106 "src/dart/third_party/pkg/oauth2": | 106 "src/dart/third_party/pkg/oauth2": |
107 "https://github.com/dart-lang/oauth2.git" + Var("oauth2_rev"), | 107 "https://github.com/dart-lang/oauth2.git" + Var("oauth2_rev"), |
108 "src/dart/third_party/pkg/plugin": | 108 "src/dart/third_party/pkg/plugin": |
109 "https://github.com/dart-lang/plugin.git" + Var("plugin_tag"), | 109 "https://github.com/dart-lang/plugin.git" + Var("plugin_tag"), |
110 "src/dart/third_party/pkg/pool": | 110 "src/dart/third_party/pkg/pool": |
111 "https://github.com/dart-lang/pool.git" + Var("pool_rev"), | 111 "https://github.com/dart-lang/pool.git" + Var("pool_rev"), |
112 "src/dart/third_party/pkg_tested/pub": | 112 "src/dart/third_party/pkg/pub": |
113 "https://github.com/dart-lang/pub.git" + Var("pub_rev"), | 113 "https://github.com/dart-lang/pub.git" + Var("pub_rev"), |
114 "src/dart/third_party/pkg/pub_semver": | 114 "src/dart/third_party/pkg/pub_semver": |
115 "https://github.com/dart-lang/pub_semver.git" + Var("pub_semver_tag"), | 115 "https://github.com/dart-lang/pub_semver.git" + Var("pub_semver_tag"), |
116 "src/dart/third_party/pkg/shelf": | 116 "src/dart/third_party/pkg/shelf": |
117 "https://github.com/dart-lang/shelf.git" + Var("shelf_rev"), | 117 "https://github.com/dart-lang/shelf.git" + Var("shelf_rev"), |
118 "src/dart/third_party/pkg/shelf_web_socket": | 118 "src/dart/third_party/pkg/shelf_web_socket": |
119 "https://github.com/dart-lang/shelf_web_socket.git" + | 119 "https://github.com/dart-lang/shelf_web_socket.git" + |
120 Var("shelf_web_socket_rev"), | 120 Var("shelf_web_socket_rev"), |
121 "src/dart/third_party/pkg/watcher": | 121 "src/dart/third_party/pkg/watcher": |
122 "https://github.com/dart-lang/watcher.git" + Var("watcher_tag"), | 122 "https://github.com/dart-lang/watcher.git" + Var("watcher_tag"), |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 "download_from_google_storage", | 209 "download_from_google_storage", |
210 "--no_auth", | 210 "--no_auth", |
211 "--no_resume", | 211 "--no_resume", |
212 "--bucket", | 212 "--bucket", |
213 "dart-dependencies", | 213 "dart-dependencies", |
214 "-d", | 214 "-d", |
215 "-r", | 215 "-r", |
216 "src/dart/tools/testing/bin", | 216 "src/dart/tools/testing/bin", |
217 ], | 217 ], |
218 }) | 218 }) |
OLD | NEW |