| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 "front_end/ui/SwatchPopoverHelper.js", | 270 "front_end/ui/SwatchPopoverHelper.js", |
| 271 "front_end/ui/Toolbar.js", | 271 "front_end/ui/Toolbar.js", |
| 272 "front_end/ui/Tooltip.js", | 272 "front_end/ui/Tooltip.js", |
| 273 "front_end/ui/SuggestBox.js", | 273 "front_end/ui/SuggestBox.js", |
| 274 "front_end/ui/TabbedPane.js", | 274 "front_end/ui/TabbedPane.js", |
| 275 "front_end/ui/TextPrompt.js", | 275 "front_end/ui/TextPrompt.js", |
| 276 "front_end/ui/ThrottledWidget.js", | 276 "front_end/ui/ThrottledWidget.js", |
| 277 "front_end/ui/UIUtils.js", | 277 "front_end/ui/UIUtils.js", |
| 278 "front_end/ui/View.js", | 278 "front_end/ui/View.js", |
| 279 "front_end/ui/ViewportControl.js", | 279 "front_end/ui/ViewportControl.js", |
| 280 "front_end/ui/StaticViewportControl.js", |
| 280 "front_end/ui/Widget.js", | 281 "front_end/ui/Widget.js", |
| 281 "front_end/ui/ZoomManager.js", | 282 "front_end/ui/ZoomManager.js", |
| 282 "front_end/ui/treeoutline.js", | 283 "front_end/ui/treeoutline.js", |
| 283 ] | 284 ] |
| 284 devtools_main_js_files = [ | 285 devtools_main_js_files = [ |
| 285 "front_end/main/errorWarningCounter.css", | 286 "front_end/main/errorWarningCounter.css", |
| 286 "front_end/main/remoteDebuggingTerminatedScreen.css", | 287 "front_end/main/remoteDebuggingTerminatedScreen.css", |
| 287 "front_end/main/renderingOptions.css", | 288 "front_end/main/renderingOptions.css", |
| 288 "front_end/main/targetCrashedScreen.css", | 289 "front_end/main/targetCrashedScreen.css", |
| 289 "front_end/main/Connections.js", | 290 "front_end/main/Connections.js", |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 deps = [ | 1125 deps = [ |
| 1125 ":frontend_protocol_sources", | 1126 ":frontend_protocol_sources", |
| 1126 ":supported_css_properties", | 1127 ":supported_css_properties", |
| 1127 ] | 1128 ] |
| 1128 sources = generated_scripts | 1129 sources = generated_scripts |
| 1129 outputs = [ | 1130 outputs = [ |
| 1130 "$resources_out_debug_dir/{{source_file_part}}", | 1131 "$resources_out_debug_dir/{{source_file_part}}", |
| 1131 ] | 1132 ] |
| 1132 } | 1133 } |
| 1133 } | 1134 } |
| OLD | NEW |