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

Side by Side Diff: DEPS

Issue 1546603002: Move third_party/WebCore to git (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/deps/dartium.deps/DEPS » ('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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", 89 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e",
90 "test_tag": "@0.12.6+1", 90 "test_tag": "@0.12.6+1",
91 "test_reflective_loader_tag": "@0.0.3", 91 "test_reflective_loader_tag": "@0.0.3",
92 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", 92 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6",
93 "unittest_tag": "@0.11.6", 93 "unittest_tag": "@0.11.6",
94 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", 94 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638",
95 "watcher_tag": "@0.9.7", 95 "watcher_tag": "@0.9.7",
96 "when_tag": "@0.2.0+2", 96 "when_tag": "@0.2.0+2",
97 "which_tag": "@0.1.3+1", 97 "which_tag": "@0.1.3+1",
98 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", 98 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec",
99 "WebCore_rev" : "@44061", 99 "WebCore_rev": "@4f90b41b0165f23f412cecdba07b7d81d3fbb5b5",
100 "yaml_tag": "@2.1.5", 100 "yaml_tag": "@2.1.5",
101 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", 101 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f",
102 "barback-0.13.0_rev": "@34853", 102 "barback-0.13.0_rev": "@34853",
103 "barback-0.14.0_rev": "@36398", 103 "barback-0.14.0_rev": "@36398",
104 "barback-0.14.1_rev": "@38525", 104 "barback-0.14.1_rev": "@38525",
105 "source_maps-0.9.4_rev": "@38524", 105 "source_maps-0.9.4_rev": "@38524",
106 } 106 }
107 107
108 deps = { 108 deps = {
109 # Stuff needed for GYP to run. 109 # Stuff needed for GYP to run.
(...skipping 21 matching lines...) Expand all
131 131
132 Var("dart_root") + "/third_party/ply": 132 Var("dart_root") + "/third_party/ply":
133 Var("chromium_git") + "/chromium/src/third_party/ply.git" + 133 Var("chromium_git") + "/chromium/src/third_party/ply.git" +
134 Var("ply_rev"), 134 Var("ply_rev"),
135 135
136 Var("dart_root") + "/third_party/idl_parser": 136 Var("dart_root") + "/third_party/idl_parser":
137 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" + 137 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" +
138 Var("idl_parser_rev"), 138 Var("idl_parser_rev"),
139 139
140 Var("dart_root") + "/third_party/WebCore": 140 Var("dart_root") + "/third_party/WebCore":
141 Var("third_party") + "/WebCore" + Var("WebCore_rev"), 141 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"),
142 142
143 Var("dart_root") + "/third_party/pkg/args": 143 Var("dart_root") + "/third_party/pkg/args":
144 (Var("github_mirror") % "args") + Var("args_tag"), 144 (Var("github_mirror") % "args") + Var("args_tag"),
145 Var("dart_root") + "/third_party/pkg/async": 145 Var("dart_root") + "/third_party/pkg/async":
146 (Var("github_mirror") % "async") + Var("async_tag"), 146 (Var("github_mirror") % "async") + Var("async_tag"),
147 Var("dart_root") + "/third_party/pkg/barback": 147 Var("dart_root") + "/third_party/pkg/barback":
148 (Var("github_mirror") % "barback") + Var("barback_tag"), 148 (Var("github_mirror") % "barback") + Var("barback_tag"),
149 Var("dart_root") + "/third_party/pkg/charcode": 149 Var("dart_root") + "/third_party/pkg/charcode":
150 (Var("github_mirror") % "charcode") + Var("charcode_tag"), 150 (Var("github_mirror") % "charcode") + Var("charcode_tag"),
151 Var("dart_root") + "/third_party/pkg/cli_util": 151 Var("dart_root") + "/third_party/pkg/cli_util":
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 "--no_auth", 414 "--no_auth",
415 "--no_resume", 415 "--no_resume",
416 "--bucket", 416 "--bucket",
417 "dart-dependencies", 417 "dart-dependencies",
418 "--extract", 418 "--extract",
419 "-s", 419 "-s",
420 Var('dart_root') + "/third_party/gsutil.tar.gz.sha1", 420 Var('dart_root') + "/third_party/gsutil.tar.gz.sha1",
421 ], 421 ],
422 }, 422 },
423 ] 423 ]
OLDNEW
« no previous file with comments | « no previous file | tools/deps/dartium.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698