| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "front_end/ui/ListWidget.js", | 255 "front_end/ui/ListWidget.js", |
| 256 "front_end/ui/Panel.js", | 256 "front_end/ui/Panel.js", |
| 257 "front_end/ui/Popover.js", | 257 "front_end/ui/Popover.js", |
| 258 "front_end/ui/ProgressIndicator.js", | 258 "front_end/ui/ProgressIndicator.js", |
| 259 "front_end/ui/ReportView.js", | 259 "front_end/ui/ReportView.js", |
| 260 "front_end/ui/ResizerWidget.js", | 260 "front_end/ui/ResizerWidget.js", |
| 261 "front_end/ui/RootView.js", | 261 "front_end/ui/RootView.js", |
| 262 "front_end/ui/SearchableView.js", | 262 "front_end/ui/SearchableView.js", |
| 263 "front_end/ui/SettingsUI.js", | 263 "front_end/ui/SettingsUI.js", |
| 264 "front_end/ui/ShortcutRegistry.js", | 264 "front_end/ui/ShortcutRegistry.js", |
| 265 "front_end/ui/SidebarTreeElement.js", | |
| 266 "front_end/ui/SoftContextMenu.js", | 265 "front_end/ui/SoftContextMenu.js", |
| 267 "front_end/ui/SplitWidget.js", | 266 "front_end/ui/SplitWidget.js", |
| 268 "front_end/ui/StackView.js", | 267 "front_end/ui/StackView.js", |
| 269 "front_end/ui/SwatchPopoverHelper.js", | 268 "front_end/ui/SwatchPopoverHelper.js", |
| 270 "front_end/ui/Toolbar.js", | 269 "front_end/ui/Toolbar.js", |
| 271 "front_end/ui/Tooltip.js", | 270 "front_end/ui/Tooltip.js", |
| 272 "front_end/ui/SuggestBox.js", | 271 "front_end/ui/SuggestBox.js", |
| 273 "front_end/ui/TabbedPane.js", | 272 "front_end/ui/TabbedPane.js", |
| 274 "front_end/ui/TextPrompt.js", | 273 "front_end/ui/TextPrompt.js", |
| 275 "front_end/ui/ThrottledWidget.js", | 274 "front_end/ui/ThrottledWidget.js", |
| (...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1117 deps = [ | 1116 deps = [ |
| 1118 ":frontend_protocol_sources", | 1117 ":frontend_protocol_sources", |
| 1119 ":supported_css_properties", | 1118 ":supported_css_properties", |
| 1120 ] | 1119 ] |
| 1121 sources = generated_scripts | 1120 sources = generated_scripts |
| 1122 outputs = [ | 1121 outputs = [ |
| 1123 "$resources_out_debug_dir/{{source_file_part}}", | 1122 "$resources_out_debug_dir/{{source_file_part}}", |
| 1124 ] | 1123 ] |
| 1125 } | 1124 } |
| 1126 } | 1125 } |
| OLD | NEW |