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

Unified Diff: DEPS

Issue 745963005: Add support for downloading clang (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index 81344e97a0e284be1739d5465fc53e516740e659..fb9433ca8a6395e3bf5121f5f3a0b735c076c08f 100644
--- a/DEPS
+++ b/DEPS
@@ -18,6 +18,8 @@ deps = {
Var("git_url") + "/external/googletest.git@4650552ff637bb44ecf7784060091cbed3252211",
"v8/testing/gmock":
Var("git_url") + "/external/googlemock.git@896ba0e03f520fb9b6ed582bde2bd00847e3c3f2",
+ "v8/tools/clang":
+ Var("git_url") + "/chromium/src/tools/clang.git@327e26ee7f6ae6f86fb335113b46cb86ed3cb0dc",
Michael Achenbach 2014/11/26 15:08:34 Be aware of make dependencies...
jochen (gone - plz use gerrit) 2014/11/27 10:02:39 everybody should be using gclient sync, no?
Michael Achenbach 2014/11/27 10:13:05 I can't speak for other people. The best way to en
}
deps_os = {
@@ -82,6 +84,13 @@ hooks = [
],
},
{
+ # Pull clang if needed or requested via GYP_DEFINES.
Michael Achenbach 2014/11/26 15:08:34 I don't understand how this is dependent on GYP_DE
jochen (gone - plz use gerrit) 2014/11/27 10:02:39 it internally checks the gyp defines
+ # Note: On Win, this should run after win_toolchain, as it may use it.
+ 'name': 'clang',
+ 'pattern': '.',
+ 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
+ },
+ {
# A change to a .gyp, .gypi, or to GYP itself should run the generator.
"pattern": ".",
"action": ["python", "v8/build/gyp_v8"],
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698