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

Side by Side Diff: DEPS

Issue 2086153003: Add //base and //buildtools to DEPS (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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
« .gitignore ('K') | « .gitignore ('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 # 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 # We use mirrors of all github repos to guarantee reproducibility and 10 # We use mirrors of all github repos to guarantee reproducibility and
11 # consistency between what users see and what the bots see. 11 # consistency between what users see and what the bots see.
12 # We need the mirrors to not have 100+ bots pulling github constantly. 12 # We need the mirrors to not have 100+ bots pulling github constantly.
13 # We mirror our github repos on chromium git servers. 13 # We mirror our github repos on chromium git servers.
14 # DO NOT use this var if you don't see a mirror here: 14 # DO NOT use this var if you don't see a mirror here:
15 # https://chromium.googlesource.com/ 15 # https://chromium.googlesource.com/
16 # named like: 16 # named like:
17 # external/github.com/dart-lang/NAME 17 # external/github.com/dart-lang/NAME
18 # It is ok to add a dependency directly on dart-lang (dart-lang only) 18 # It is ok to add a dependency directly on dart-lang (dart-lang only)
19 # github repo until the mirror has been created, but please do file a bug 19 # github repo until the mirror has been created, but please do file a bug
20 # against infra to make that happen. 20 # against infra to make that happen.
21 "github_mirror": 21 "github_mirror":
22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", 22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git",
23 23
24 # Chromium git
25 "chromium_git": "https://chromium.googlesource.com",
26
24 # Only use this temporarily while waiting for a mirror for a new package. 27 # Only use this temporarily while waiting for a mirror for a new package.
25 "github_dartlang": "https://github.com/dart-lang/%s.git", 28 "github_dartlang": "https://github.com/dart-lang/%s.git",
26 29
27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", 30 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638",
28 "co19_rev": "@3f0a4bc9a080a792cdf5f093147a900f99ea301f", 31 "co19_rev": "@3f0a4bc9a080a792cdf5f093147a900f99ea301f",
29 "chromium_git": "https://chromium.googlesource.com", 32 "chromium_git": "https://chromium.googlesource.com",
zra 2016/06/22 15:49:09 rm duplicate definition.
Cutch 2016/06/22 17:30:45 Done.
30 33
34 # Revisions of GN/Mojo/Flutter related dependencies.
35 "base_revision": "@672b04e54b937ec899429a6bd5409c5a6300d151",
36 "buildtools_revision": "@565d04e8741429fb1b4f26d102f2c6c3b849edeb",
37
31 # Revisions of /third_party/* dependencies. 38 # Revisions of /third_party/* dependencies.
32 "args_tag": "@0.13.4", 39 "args_tag": "@0.13.4",
33 "async_tag": "@1.10.0", 40 "async_tag": "@1.10.0",
34 "barback-0.13.0_rev": "@34853", 41 "barback-0.13.0_rev": "@34853",
35 "barback-0.14.0_rev": "@36398", 42 "barback-0.14.0_rev": "@36398",
36 "barback-0.14.1_rev": "@38525", 43 "barback-0.14.1_rev": "@38525",
37 "barback_tag" : "@0.15.2+7", 44 "barback_tag" : "@0.15.2+7",
38 "bazel_worker_tag": "@v0.1.0", 45 "bazel_worker_tag": "@v0.1.0",
39 "boolean_selector_tag" : "@1.0.0", 46 "boolean_selector_tag" : "@1.0.0",
40 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", 47 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "which_tag": "@0.1.3+1", 119 "which_tag": "@0.1.3+1",
113 "yaml_tag": "@2.1.5", 120 "yaml_tag": "@2.1.5",
114 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", 121 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f",
115 } 122 }
116 123
117 deps = { 124 deps = {
118 # Stuff needed for GYP to run. 125 # Stuff needed for GYP to run.
119 Var("dart_root") + "/third_party/gyp": 126 Var("dart_root") + "/third_party/gyp":
120 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), 127 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"),
121 128
129 # Stuff needed for GN/Mojo/Flutter.
130 Var("dart_root") + "/base":
131 Var('chromium_git') + '/external/github.com/domokit/base' + Var('base_revi sion'),
zra 2016/06/22 15:49:10 It looks like we're breaking long lines by moving
Cutch 2016/06/22 17:30:45 Done.
132
133 Var("dart_root") + "/buildtools":
134 Var('chromium_git') + '/chromium/buildtools.git' + Var('buildtools_revisio n'),
135
122 Var("dart_root") + "/tests/co19/src": 136 Var("dart_root") + "/tests/co19/src":
123 (Var("github_mirror") % "co19") + Var("co19_rev"), 137 (Var("github_mirror") % "co19") + Var("co19_rev"),
124 138
125 Var("dart_root") + "/third_party/zlib": 139 Var("dart_root") + "/third_party/zlib":
126 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + 140 Var("chromium_git") + "/chromium/src/third_party/zlib.git" +
127 Var("zlib_rev"), 141 Var("zlib_rev"),
128 142
129 Var("dart_root") + "/third_party/boringssl/src": 143 Var("dart_root") + "/third_party/boringssl/src":
130 "https://boringssl.googlesource.com/boringssl.git" + 144 "https://boringssl.googlesource.com/boringssl.git" +
131 Var("boringssl_rev"), 145 Var("boringssl_rev"),
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 "--extract", 474 "--extract",
461 "-s", 475 "-s",
462 Var('dart_root') + "/third_party/clang.tar.gz.sha1", 476 Var('dart_root') + "/third_party/clang.tar.gz.sha1",
463 ], 477 ],
464 }, 478 },
465 { 479 {
466 "pattern": ".", 480 "pattern": ".",
467 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], 481 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"],
468 }, 482 },
469 ] 483 ]
OLDNEW
« .gitignore ('K') | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698