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

Unified Diff: DEPS

Issue 2486903002: DevTools: Add support for installing node and running eslint over devtools. (Closed)
Patch Set: fix Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/buildbot/chromium.linux.json » ('j') | testing/scripts/run_devtools_eslint.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index 5c9c3797895d71a7054166dfda481aac9f984d13..2009532e0463a10906504150c03a8bda707cdc16 100644
--- a/DEPS
+++ b/DEPS
@@ -101,6 +101,10 @@ vars = {
# the commit queue can handle CLs rolling libFuzzer
# and whatever else without interference from each other.
'libfuzzer_revision': '2ed967ccadb496a1e916d9bd33a41386900dfb6a',
+ # Three lines of non-changing comments so that
+ # the commit queue can handle CLs rolling devtools-node-modules
+ # and whatever else without interference from each other.
+ 'devtools_node_modules_revision': '6226d6cd80aaf2e5295ed460cf73ef6a582e4d78',
}
# Only these hosts are allowed for dependencies in this DEPS file.
@@ -424,6 +428,10 @@ deps_os = {
# gRPC, an RPC framework. For Blimp use only.
'src/third_party/grpc':
Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'b4cc5fc16c1368149c8a20c51248a18009ff8254',
+
+ # DevTools node modules. Used on Linux buildbots only.
+ 'src/third_party/WebKit/Source/devtools/devtools-node-modules':
+ Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision')
},
'android': {
'src/third_party/android_protobuf/src':
@@ -1051,6 +1059,14 @@ hooks = [
'src/tools/clang_format_merge_driver/install_git_hook.py',
],
},
+ {
+ 'name': 'devtools_install_node',
+ 'action': [ 'python',
+ 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.py',
+ '--running-as-hook',
+ '--version',
+ ],
+ },
]
recursedeps = [
« no previous file with comments | « no previous file | testing/buildbot/chromium.linux.json » ('j') | testing/scripts/run_devtools_eslint.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698