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

Side by Side Diff: DEPS

Issue 1526973002: Remove outdated support for chrome-only apis (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | tools/dom/scripts/chromegenerator.py » ('j') | 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 Var("dart_root") + "/third_party/ply": 146 Var("dart_root") + "/third_party/ply":
147 Var("chromium_git") + "/chromium/src/third_party/ply.git" + 147 Var("chromium_git") + "/chromium/src/third_party/ply.git" +
148 Var("ply_rev"), 148 Var("ply_rev"),
149 149
150 Var("dart_root") + "/third_party/idl_parser": 150 Var("dart_root") + "/third_party/idl_parser":
151 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" + 151 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" +
152 Var("idl_parser_rev"), 152 Var("idl_parser_rev"),
153 153
154 Var("dart_root") + "/third_party/7zip": 154 Var("dart_root") + "/third_party/7zip":
155 Var("third_party") + "/7zip" + Var("7zip_rev"), 155 Var("third_party") + "/7zip" + Var("7zip_rev"),
156 Var("dart_root") + "/third_party/chrome":
157 Var("third_party") + "/chrome" + Var("chrome_rev"),
158 Var("dart_root") + "/third_party/pkg/fake_async": 156 Var("dart_root") + "/third_party/pkg/fake_async":
159 Var("third_party") + "/fake_async" + Var("fake_async_rev"), 157 Var("third_party") + "/fake_async" + Var("fake_async_rev"),
160 Var("dart_root") + "/third_party/firefox_jsshell": 158 Var("dart_root") + "/third_party/firefox_jsshell":
161 Var("third_party") + "/firefox_jsshell" + Var("firefox_jsshell_rev"), 159 Var("third_party") + "/firefox_jsshell" + Var("firefox_jsshell_rev"),
162 Var("dart_root") + "/third_party/font-awesome": 160 Var("dart_root") + "/third_party/font-awesome":
163 Var("third_party") + "/font-awesome" + Var("font_awesome_rev"), 161 Var("third_party") + "/font-awesome" + Var("font_awesome_rev"),
164 Var("dart_root") + "/third_party/gsutil": 162 Var("dart_root") + "/third_party/gsutil":
165 Var("third_party") + "/gsutil" + Var("gsutil_rev"), 163 Var("third_party") + "/gsutil" + Var("gsutil_rev"),
166 Var("dart_root") + "/third_party/pkg/petitparser": 164 Var("dart_root") + "/third_party/pkg/petitparser":
167 Var("third_party") + "/petitparser" + Var("petitparser_rev"), 165 Var("third_party") + "/petitparser" + Var("petitparser_rev"),
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 "--bucket", 383 "--bucket",
386 "dart-dependencies", 384 "dart-dependencies",
387 "--recursive", 385 "--recursive",
388 "--auto_platform", 386 "--auto_platform",
389 "--extract", 387 "--extract",
390 "--directory", 388 "--directory",
391 Var('dart_root') + "/tools/sdks", 389 Var('dart_root') + "/tools/sdks",
392 ], 390 ],
393 }, 391 },
394 ] 392 ]
OLDNEW
« no previous file with comments | « no previous file | tools/dom/scripts/chromegenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698