OLD | NEW |
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 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1177 "scripts/closure/", | 1177 "scripts/closure/", |
1178 "scripts/compile_frontend.py", | 1178 "scripts/compile_frontend.py", |
1179 "scripts/jsdoc_validator/", | 1179 "scripts/jsdoc_validator/", |
1180 "//testing/scripts/run_devtools_closure_compile.py", | 1180 "//testing/scripts/run_devtools_closure_compile.py", |
1181 "//testing/scripts/common.py", | 1181 "//testing/scripts/common.py", |
1182 "//testing/xvfb.py", | 1182 "//testing/xvfb.py", |
1183 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", | 1183 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", |
1184 "//v8/src/inspector/js_protocol.json", | 1184 "//v8/src/inspector/js_protocol.json", |
1185 ] | 1185 ] |
1186 } | 1186 } |
| 1187 |
| 1188 group("devtools_eslint") { |
| 1189 data = [ |
| 1190 # Needed for isolate script to execute. |
| 1191 ".eslintignore", |
| 1192 ".eslintrc.js", |
| 1193 "devtools-node-modules/", |
| 1194 "front_end/", |
| 1195 "scripts/buildbot/run_eslint.py", |
| 1196 "scripts/local_node/", |
| 1197 "//testing/scripts/run_devtools_eslint.py", |
| 1198 "//testing/scripts/common.py", |
| 1199 "//testing/xvfb.py", |
| 1200 ] |
| 1201 } |
OLD | NEW |