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

Side by Side Diff: tools/deps/dartium.deps/DEPS

Issue 1542953002: Move third_party/clang to cloud storage (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update tar file Created 4 years, 12 months 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 | « third_party/clang.tar.gz.sha1 ('k') | 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 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
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
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 })
OLDNEW
« no previous file with comments | « third_party/clang.tar.gz.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698