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

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2486903002: DevTools: Add support for installing node and running eslint over devtools. (Closed)
Patch Set: fix node.py 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//third_party/WebKit/public/public_features.gni") 6 import("//third_party/WebKit/public/public_features.gni")
7 import("//third_party/WebKit/Source/core/core.gni") 7 import("//third_party/WebKit/Source/core/core.gni")
8 8
9 devtools_embedder_scripts = [ 9 devtools_embedder_scripts = [
10 "front_end/devtools_compatibility.js", 10 "front_end/devtools_compatibility.js",
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 1169
1170 group("devtools_closure_compile") { 1170 group("devtools_closure_compile") {
1171 data = [ 1171 data = [
1172 # Needed for isolate script to execute. 1172 # Needed for isolate script to execute.
1173 "front_end/", 1173 "front_end/",
1174 "scripts/build/", 1174 "scripts/build/",
1175 "scripts/closure/", 1175 "scripts/closure/",
1176 "scripts/compile_frontend.py", 1176 "scripts/compile_frontend.py",
1177 "scripts/jsdoc_validator/", 1177 "scripts/jsdoc_validator/",
1178 "scripts/utils.py", 1178 "scripts/utils.py",
1179 "//testing/scripts/run_devtools_closure_compile.py",
1180 "//testing/scripts/common.py", 1179 "//testing/scripts/common.py",
1180 "//testing/scripts/run_devtools_check.py",
1181 "//testing/xvfb.py", 1181 "//testing/xvfb.py",
1182 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", 1182 "//third_party/WebKit/Source/core/inspector/browser_protocol.json",
1183 "//v8/src/inspector/js_protocol.json", 1183 "//v8/src/inspector/js_protocol.json",
1184 ] 1184 ]
1185 } 1185 }
1186
1187 group("devtools_eslint") {
1188 data = [
1189 # Needed for isolate script to execute.
1190 ".eslintignore",
1191 ".eslintrc.js",
1192 "devtools-node-modules/",
1193 "front_end/",
1194 "scripts/buildbot/run_eslint.py",
1195 "scripts/local_node/",
1196 "//testing/scripts/common.py",
1197 "//testing/scripts/run_devtools_check.py",
1198 "//testing/xvfb.py",
1199 ]
1200 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/.gitignore ('k') | third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698