Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: DEPS

Issue 1543523002: Move 7zip dependency to cloud storage (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Move to cloud storage. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 # github repo until the mirror has been created, but please do file a bug 22 # github repo until the mirror has been created, but please do file a bug
23 # against infra to make that happen. 23 # against infra to make that happen.
24 "github_mirror": 24 "github_mirror":
25 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", 25 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git",
26 26
27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", 27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638",
28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", 28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0",
29 "chromium_git": "https://chromium.googlesource.com", 29 "chromium_git": "https://chromium.googlesource.com",
30 30
31 # Revisions of /third_party/* dependencies. 31 # Revisions of /third_party/* dependencies.
32 "7zip_rev" : "@19997",
33 "args_tag": "@0.13.0", 32 "args_tag": "@0.13.0",
34 "async_tag": "@1.4.0", 33 "async_tag": "@1.4.0",
35 "barback_tag" : "@0.15.2+7", 34 "barback_tag" : "@0.15.2+7",
36 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", 35 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e",
37 "charcode_tag": "@1.1.0", 36 "charcode_tag": "@1.1.0",
38 "chrome_rev" : "@19997", 37 "chrome_rev" : "@19997",
39 "clang_rev" : "@28450", 38 "clang_rev" : "@28450",
40 "cli_util_tag" : "@0.0.1+2", 39 "cli_util_tag" : "@0.0.1+2",
41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", 40 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc",
42 "convert_tag": "@1.0.0", 41 "convert_tag": "@1.0.0",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 Var("jinja2_rev"), 133 Var("jinja2_rev"),
135 134
136 Var("dart_root") + "/third_party/ply": 135 Var("dart_root") + "/third_party/ply":
137 Var("chromium_git") + "/chromium/src/third_party/ply.git" + 136 Var("chromium_git") + "/chromium/src/third_party/ply.git" +
138 Var("ply_rev"), 137 Var("ply_rev"),
139 138
140 Var("dart_root") + "/third_party/idl_parser": 139 Var("dart_root") + "/third_party/idl_parser":
141 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" + 140 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" +
142 Var("idl_parser_rev"), 141 Var("idl_parser_rev"),
143 142
144 Var("dart_root") + "/third_party/7zip":
145 Var("third_party") + "/7zip" + Var("7zip_rev"),
146 Var("dart_root") + "/third_party/firefox_jsshell": 143 Var("dart_root") + "/third_party/firefox_jsshell":
147 Var("third_party") + "/firefox_jsshell" + Var("firefox_jsshell_rev"), 144 Var("third_party") + "/firefox_jsshell" + Var("firefox_jsshell_rev"),
148 Var("dart_root") + "/third_party/gsutil": 145 Var("dart_root") + "/third_party/gsutil":
149 Var("third_party") + "/gsutil" + Var("gsutil_rev"), 146 Var("third_party") + "/gsutil" + Var("gsutil_rev"),
150 Var("dart_root") + "/third_party/pkg/petitparser": 147 Var("dart_root") + "/third_party/pkg/petitparser":
151 Var("third_party") + "/petitparser" + Var("petitparser_rev"), 148 Var("third_party") + "/petitparser" + Var("petitparser_rev"),
152 Var("dart_root") + "/third_party/WebCore": 149 Var("dart_root") + "/third_party/WebCore":
153 Var("third_party") + "/WebCore" + Var("WebCore_rev"), 150 Var("third_party") + "/WebCore" + Var("WebCore_rev"),
154 151
155 Var("dart_root") + "/third_party/dart-services": 152 Var("dart_root") + "/third_party/dart-services":
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 "download_from_google_storage", 364 "download_from_google_storage",
368 "--no_auth", 365 "--no_auth",
369 "--no_resume", 366 "--no_resume",
370 "--bucket", 367 "--bucket",
371 "dart-dependencies", 368 "dart-dependencies",
372 "--platform=win32", 369 "--platform=win32",
373 "--directory", 370 "--directory",
374 Var('dart_root') + "/third_party/drt_resources", 371 Var('dart_root') + "/third_party/drt_resources",
375 ], 372 ],
376 }, 373 },
374 {
375 "name": "7zip",
376 "pattern": ".",
377 "action": [
378 "download_from_google_storage",
379 "--no_auth",
380 "--no_resume",
381 "--bucket",
382 "dart-dependencies",
383 "--platform=win32",
384 "--extract",
385 "-s",
386 Var('dart_root') + "/third_party/7zip.tar.gz.sha1",
387 ],
388 },
377 ] 389 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698