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