Reviewers: Michael Achenbach,
Description:
Add dependency on buildtools repo
Currently, this adds checkdeps, in the future, this will be the place
where clang-format and gn lives.
BUG=none
[email protected]
LOG=n
Please review this at https://codereview.chromium.org/308353002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+13, -0 lines):
M .DEPS.git
M DEPS
M Makefile
Index: .DEPS.git
diff --git a/.DEPS.git b/.DEPS.git
index
e1e6982c05e15575c772cad7446e9fd36f03808b..e4f6331517da75dc00cc2145f44006d3782b86ce
100644
--- a/.DEPS.git
+++ b/.DEPS.git
@@ -13,6 +13,8 @@ vars = {
deps = {
'v8/build/gyp':
Var('git_url')
+ '/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16b852',
+ 'v8/buildtools':
+ Var('git_url')
+ '/chromium/buildtools.git@83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571',
'v8/third_party/icu':
Var('git_url')
+ '/chromium/deps/icu46.git@7a1ec88f69e25b3efcf76196d07f7815255db025',
}
Index: DEPS
diff --git a/DEPS b/DEPS
index
8f7facaffc0d519884d8a9519dea396467a22617..47cb78223422aaea4b2f144f76e3e37c7cec1d75
100644
--- a/DEPS
+++ b/DEPS
@@ -4,6 +4,8 @@
vars = {
"chromium_trunk": "https://src.chromium.org/svn/trunk",
+
+ "buildtools_revision": "83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571",
}
deps = {
@@ -13,6 +15,10 @@ deps = {
"v8/third_party/icu":
Var("chromium_trunk") + "/deps/third_party/icu46@258359",
+
+ "v8/buildtools":
+ "https://chromium.googlesource.com/chromium/buildtools.git@" +
+ Var("buildtools_revision"),
}
deps_os = {
Index: Makefile
diff --git a/Makefile b/Makefile
index
cad7beb2fb30b22983b8afb5198f6b2a8a9abbd9..a90177bb990bda04c0fca29e2b502137571266ad
100644
--- a/Makefile
+++ b/Makefile
@@ -468,3 +468,8 @@ dependencies:
svn checkout --force \
https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
third_party/icu --revision 258359
+ ( cd buildtools || \
+ git clone https://chromium.googlesource.com/chromium/buildtools.git; \
+ cd buildtools; \
+ git fetch origin; \
+ git checkout 83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571 )
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.