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

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

Issue 2498123002: DevTools: Add closure compile to buildbot to type check devtools front-end (Closed)
Patch Set: Fix GN w/o Type Error Created 4 years, 1 month 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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 deps = [ 1149 deps = [
1150 ":frontend_protocol_sources", 1150 ":frontend_protocol_sources",
1151 ":supported_css_properties", 1151 ":supported_css_properties",
1152 ] 1152 ]
1153 sources = generated_scripts 1153 sources = generated_scripts
1154 outputs = [ 1154 outputs = [
1155 "$resources_out_debug_dir/{{source_file_part}}", 1155 "$resources_out_debug_dir/{{source_file_part}}",
1156 ] 1156 ]
1157 } 1157 }
1158 } 1158 }
1159
1160 group("devtools_closure_compile") {
1161 data = [
1162 # Needed for isolate script to execute.
1163 "front_end/",
1164 "scripts/build/",
1165 "scripts/closure/",
1166 "scripts/compile_frontend.py",
1167 "scripts/jsdoc_validator/",
1168 "//testing/scripts/run_devtools_closure_compile.py",
1169 "//testing/scripts/common.py",
1170 "//testing/xvfb.py",
1171 "//third_party/WebKit/Source/core/inspector/browser_protocol.json",
1172 "//v8/src/inspector/js_protocol.json",
1173 ]
1174 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698