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

Side by Side Diff: Source/devtools/scripts/frontend_modules.json

Issue 366633002: DevTools: Move jsdifflib to "sources", extract "toolbox" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "name": "common", 3 "name": "common",
4 "dependencies": [], 4 "dependencies": [],
5 "sources": [ 5 "sources": [
6 "common/modules.js", 6 "common/modules.js",
7 "common/Color.js", 7 "common/Color.js",
8 "common/CompletionDictionary.js", 8 "common/CompletionDictionary.js",
9 "common/DOMExtension.js", 9 "common/DOMExtension.js",
10 "common/Geometry.js", 10 "common/Geometry.js",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "ui/ActionRegistry.js", 102 "ui/ActionRegistry.js",
103 "ui/Checkbox.js", 103 "ui/Checkbox.js",
104 "ui/Context.js", 104 "ui/Context.js",
105 "ui/ContextMenu.js", 105 "ui/ContextMenu.js",
106 "ui/DataGrid.js", 106 "ui/DataGrid.js",
107 "ui/Dialog.js", 107 "ui/Dialog.js",
108 "ui/DropDownMenu.js", 108 "ui/DropDownMenu.js",
109 "ui/EmptyView.js", 109 "ui/EmptyView.js",
110 "ui/ForwardedInputEventHandler.js", 110 "ui/ForwardedInputEventHandler.js",
111 "ui/InplaceEditor.js", 111 "ui/InplaceEditor.js",
112 "ui/InspectedPagePlaceholder.js",
112 "ui/KeyboardShortcut.js", 113 "ui/KeyboardShortcut.js",
113 "ui/PieChart.js", 114 "ui/PieChart.js",
114 "ui/Popover.js", 115 "ui/Popover.js",
115 "ui/ProgressIndicator.js", 116 "ui/ProgressIndicator.js",
116 "ui/ResizerWidget.js", 117 "ui/ResizerWidget.js",
117 "ui/SettingsUI.js", 118 "ui/SettingsUI.js",
118 "ui/SidebarPane.js", 119 "ui/SidebarPane.js",
119 "ui/SidebarTreeElement.js", 120 "ui/SidebarTreeElement.js",
120 "ui/ShortcutRegistry.js", 121 "ui/ShortcutRegistry.js",
121 "ui/ShowMoreDataGridNode.js", 122 "ui/ShowMoreDataGridNode.js",
(...skipping 23 matching lines...) Expand all
145 "components/DockController.js", 146 "components/DockController.js",
146 "components/Drawer.js", 147 "components/Drawer.js",
147 "components/ExecutionContextSelector.js", 148 "components/ExecutionContextSelector.js",
148 "components/ExtensionServerProxy.js", 149 "components/ExtensionServerProxy.js",
149 "components/FilterBar.js", 150 "components/FilterBar.js",
150 "components/FilterSuggestionBuilder.js", 151 "components/FilterSuggestionBuilder.js",
151 "components/FlameChart.js", 152 "components/FlameChart.js",
152 "components/HandlerRegistry.js", 153 "components/HandlerRegistry.js",
153 "components/HelpScreen.js", 154 "components/HelpScreen.js",
154 "components/InspectElementModeController.js", 155 "components/InspectElementModeController.js",
155 "components/InspectedPagePlaceholder.js",
156 "components/InspectorView.js", 156 "components/InspectorView.js",
157 "components/NativeBreakpointsSidebarPane.js", 157 "components/NativeBreakpointsSidebarPane.js",
158 "components/ObjectPopoverHelper.js", 158 "components/ObjectPopoverHelper.js",
159 "components/ObjectPropertiesSection.js", 159 "components/ObjectPropertiesSection.js",
160 "components/OverviewGrid.js", 160 "components/OverviewGrid.js",
161 "components/Panel.js", 161 "components/Panel.js",
162 "components/PropertiesSection.js", 162 "components/PropertiesSection.js",
163 "components/SearchableView.js", 163 "components/SearchableView.js",
164 "components/Section.js", 164 "components/Section.js",
165 "components/ShortcutsScreen.js", 165 "components/ShortcutsScreen.js",
166 "components/TimelineGrid.js", 166 "components/TimelineGrid.js",
167 "components/WorkerFrontendManager.js" 167 "components/WorkerFrontendManager.js"
168 ] 168 ]
169 }, 169 },
170 { 170 {
171 "name": "screencast", 171 "name": "screencast",
172 "dependencies": ["components"], 172 "dependencies": ["components"],
173 "sources": [ 173 "sources": [
174 "ScreencastView.js" 174 "ScreencastView.js"
175 ] 175 ]
176 }, 176 },
177 { 177 {
178 "name": "responsive_design", 178 "name": "toolbox",
179 "dependencies": ["components"], 179 "dependencies": ["ui", "sdk"],
vsevik 2014/07/02 13:21:29 Can we reduce dependencies size?
dgozman 2014/07/02 13:25:09 Only by splitting ui/sdk into parts.
apavlov 2014/07/02 13:38:57 Indeed. This stuff depends both on "ui" and "sdk"
180 "sources": [ 180 "sources": [
181 "MediaQueryInspector.js", 181 "toolbox/MediaQueryInspector.js",
182 "ResponsiveDesignView.js" 182 "toolbox/ResponsiveDesignView.js"
183 ] 183 ]
184 }, 184 },
185 { 185 {
186 "name": "source_frame", 186 "name": "source_frame",
187 "dependencies": ["components"], 187 "dependencies": ["components"],
188 "sources": [ 188 "sources": [
189 "source_frame/CodeMirrorTextEditor.js", 189 "source_frame/CodeMirrorTextEditor.js",
190 "source_frame/CodeMirrorUtils.js", 190 "source_frame/CodeMirrorUtils.js",
191 "source_frame/FontView.js", 191 "source_frame/FontView.js",
192 "source_frame/GoToLineDialog.js", 192 "source_frame/GoToLineDialog.js",
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 "script_formatter_worker/CSSFormatter.js", 454 "script_formatter_worker/CSSFormatter.js",
455 "script_formatter_worker/JavaScriptFormatter.js", 455 "script_formatter_worker/JavaScriptFormatter.js",
456 "script_formatter_worker/ScriptFormatterWorker.js" 456 "script_formatter_worker/ScriptFormatterWorker.js"
457 ] 457 ]
458 }, 458 },
459 { 459 {
460 "name": "main", 460 "name": "main",
461 "dependencies": [ 461 "dependencies": [
462 "elements", 462 "elements",
463 "host_stub", 463 "host_stub",
464 "responsive_design",
465 "screencast", 464 "screencast",
466 "settings", 465 "settings",
467 "sources", 466 "sources",
468 "sdk" 467 "sdk",
468 "toolbox"
469 ], 469 ],
470 "sources": [ 470 "sources": [
471 "main/AdvancedApp.js", 471 "main/AdvancedApp.js",
472 "main/App.js", 472 "main/App.js",
473 "main/HelpScreenUntilReload.js", 473 "main/HelpScreenUntilReload.js",
474 "main/ScreencastApp.js", 474 "main/ScreencastApp.js",
475 "main/SimpleApp.js", 475 "main/SimpleApp.js",
476 "main/Main.js" 476 "main/Main.js"
477 ] 477 ]
478 }, 478 },
(...skipping 18 matching lines...) Expand all
497 "settings", 497 "settings",
498 "tests", 498 "tests",
499 "profiler", 499 "profiler",
500 "host_stub", 500 "host_stub",
501 "screencast", 501 "screencast",
502 "main" 502 "main"
503 ], 503 ],
504 "sources": [] 504 "sources": []
505 } 505 }
506 ] 506 ]
OLDNEW
« Source/devtools/devtools.gypi ('K') | « Source/devtools/front_end/ui/InspectedPagePlaceholder.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698