Add //base and //buildtools to DEPS

BUG=
R=zra@google.com

Review URL: https://codereview.chromium.org/2086153003 .
This commit is contained in:
John McCutchan 2016-06-22 10:32:51 -07:00
parent 21ae59b501
commit 9f78535bc6
2 changed files with 18 additions and 12 deletions

14
.gitignore vendored
View file

@ -1,15 +1,10 @@
# These ignores are auto-generated from the canonical svn ignore metadata
# using:
#
# $ git svn create-ignore
#
# Whenever possible, prefer creating ignores in svn and then generating them
# to keep git in sync.
# Build artifacts and dependencies.
/.children
/.project
/Makefile
/base
/benchmarks
/build
/buildtools
/ipch
/out
/xcodebuild
@ -27,9 +22,6 @@
*.vcxproj.filters
/*.vcxproj.user
# End generated ignores. The following are hand-added because the svn:ignore
# stuff doesn't handle them well.
# Gyp generated files
*.xcodeproj
*.intermediate

16
DEPS
View file

@ -21,12 +21,18 @@ vars = {
"github_mirror":
"https://chromium.googlesource.com/external/github.com/dart-lang/%s.git",
# Chromium git
"chromium_git": "https://chromium.googlesource.com",
# Only use this temporarily while waiting for a mirror for a new package.
"github_dartlang": "https://github.com/dart-lang/%s.git",
"gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638",
"co19_rev": "@3f0a4bc9a080a792cdf5f093147a900f99ea301f",
"chromium_git": "https://chromium.googlesource.com",
# Revisions of GN/Mojo/Flutter related dependencies.
"base_revision": "@672b04e54b937ec899429a6bd5409c5a6300d151",
"buildtools_revision": "@565d04e8741429fb1b4f26d102f2c6c3b849edeb",
# Revisions of /third_party/* dependencies.
"args_tag": "@0.13.4",
@ -119,6 +125,14 @@ deps = {
Var("dart_root") + "/third_party/gyp":
Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"),
# Stuff needed for GN/Mojo/Flutter.
Var("dart_root") + "/base":
Var('chromium_git') + '/external/github.com/domokit/base' + Var('base_revision'),
Var("dart_root") + "/buildtools":
Var('chromium_git') + '/chromium/buildtools.git' +
Var('buildtools_revision'),
Var("dart_root") + "/tests/co19/src":
(Var("github_mirror") % "co19") + Var("co19_rev"),