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 all_devtools_files = [ | 9 all_devtools_files = [ |
10 "front_end/accessibility/AccessibilityModel.js", | 10 "front_end/accessibility/AccessibilityModel.js", |
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1033 } | 1033 } |
1034 } | 1034 } |
1035 | 1035 |
1036 group("devtools_closure_compile") { | 1036 group("devtools_closure_compile") { |
1037 data = [ | 1037 data = [ |
1038 # Needed for isolate script to execute. | 1038 # Needed for isolate script to execute. |
1039 "front_end/", | 1039 "front_end/", |
1040 "scripts/build/", | 1040 "scripts/build/", |
1041 "scripts/closure/", | 1041 "scripts/closure/", |
1042 "scripts/compile_frontend.py", | 1042 "scripts/compile_frontend.py", |
| 1043 "scripts/dependency_preprocessor.py", |
1043 "scripts/jsdoc_validator/", | 1044 "scripts/jsdoc_validator/", |
| 1045 "scripts/special_case_namespaces.json", |
1044 "scripts/utils.py", | 1046 "scripts/utils.py", |
1045 "//testing/scripts/common.py", | 1047 "//testing/scripts/common.py", |
1046 "//testing/scripts/run_devtools_check.py", | 1048 "//testing/scripts/run_devtools_check.py", |
1047 "//testing/xvfb.py", | 1049 "//testing/xvfb.py", |
1048 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", | 1050 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", |
1049 "//v8/src/inspector/js_protocol.json", | 1051 "//v8/src/inspector/js_protocol.json", |
1050 ] | 1052 ] |
1051 } | 1053 } |
1052 | 1054 |
1053 group("devtools_eslint") { | 1055 group("devtools_eslint") { |
1054 data = [ | 1056 data = [ |
1055 # Needed for isolate script to execute. | 1057 # Needed for isolate script to execute. |
1056 ".eslintignore", | 1058 ".eslintignore", |
1057 ".eslintrc.js", | 1059 ".eslintrc.js", |
1058 "devtools-node-modules/", | 1060 "devtools-node-modules/", |
1059 "front_end/", | 1061 "front_end/", |
1060 "scripts/buildbot/run_eslint.py", | 1062 "scripts/buildbot/run_eslint.py", |
1061 "scripts/local_node/", | 1063 "scripts/local_node/", |
1062 "//testing/scripts/common.py", | 1064 "//testing/scripts/common.py", |
1063 "//testing/scripts/run_devtools_check.py", | 1065 "//testing/scripts/run_devtools_check.py", |
1064 "//testing/xvfb.py", | 1066 "//testing/xvfb.py", |
1065 ] | 1067 ] |
1066 } | 1068 } |
OLD | NEW |