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/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
7 | 7 |
8 devtools_embedder_scripts = [ | 8 devtools_embedder_scripts = [ |
9 "front_end/devtools.js", | 9 "front_end/devtools.js", |
10 "front_end/Tests.js", | 10 "front_end/Tests.js", |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "front_end/ui/SwatchPopoverHelper.js", | 269 "front_end/ui/SwatchPopoverHelper.js", |
270 "front_end/ui/Toolbar.js", | 270 "front_end/ui/Toolbar.js", |
271 "front_end/ui/Tooltip.js", | 271 "front_end/ui/Tooltip.js", |
272 "front_end/ui/SuggestBox.js", | 272 "front_end/ui/SuggestBox.js", |
273 "front_end/ui/TabbedPane.js", | 273 "front_end/ui/TabbedPane.js", |
274 "front_end/ui/TextPrompt.js", | 274 "front_end/ui/TextPrompt.js", |
275 "front_end/ui/ThrottledWidget.js", | 275 "front_end/ui/ThrottledWidget.js", |
276 "front_end/ui/UIUtils.js", | 276 "front_end/ui/UIUtils.js", |
277 "front_end/ui/View.js", | 277 "front_end/ui/View.js", |
278 "front_end/ui/ViewportControl.js", | 278 "front_end/ui/ViewportControl.js", |
| 279 "front_end/ui/StaticViewportControl.js", |
279 "front_end/ui/Widget.js", | 280 "front_end/ui/Widget.js", |
280 "front_end/ui/ZoomManager.js", | 281 "front_end/ui/ZoomManager.js", |
281 "front_end/ui/treeoutline.js", | 282 "front_end/ui/treeoutline.js", |
282 ] | 283 ] |
283 devtools_main_js_files = [ | 284 devtools_main_js_files = [ |
284 "front_end/main/errorWarningCounter.css", | 285 "front_end/main/errorWarningCounter.css", |
285 "front_end/main/remoteDebuggingTerminatedScreen.css", | 286 "front_end/main/remoteDebuggingTerminatedScreen.css", |
286 "front_end/main/renderingOptions.css", | 287 "front_end/main/renderingOptions.css", |
287 "front_end/main/targetCrashedScreen.css", | 288 "front_end/main/targetCrashedScreen.css", |
288 "front_end/main/Connections.js", | 289 "front_end/main/Connections.js", |
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 deps = [ | 1113 deps = [ |
1113 ":frontend_protocol_sources", | 1114 ":frontend_protocol_sources", |
1114 ":supported_css_properties", | 1115 ":supported_css_properties", |
1115 ] | 1116 ] |
1116 sources = generated_scripts | 1117 sources = generated_scripts |
1117 outputs = [ | 1118 outputs = [ |
1118 "$resources_out_debug_dir/{{source_file_part}}", | 1119 "$resources_out_debug_dir/{{source_file_part}}", |
1119 ] | 1120 ] |
1120 } | 1121 } |
1121 } | 1122 } |
OLD | NEW |