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

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: Remove trailing whitespace in jsdifflib.js 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
« no previous file with comments | « Source/devtools/front_end/toolbox/ResponsiveDesignView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "components/DockController.js", 145 "components/DockController.js",
146 "components/Drawer.js", 146 "components/Drawer.js",
147 "components/ExecutionContextSelector.js", 147 "components/ExecutionContextSelector.js",
148 "components/ExtensionServerProxy.js", 148 "components/ExtensionServerProxy.js",
149 "components/FilterBar.js", 149 "components/FilterBar.js",
150 "components/FilterSuggestionBuilder.js", 150 "components/FilterSuggestionBuilder.js",
151 "components/FlameChart.js", 151 "components/FlameChart.js",
152 "components/HandlerRegistry.js", 152 "components/HandlerRegistry.js",
153 "components/HelpScreen.js", 153 "components/HelpScreen.js",
154 "components/InspectElementModeController.js", 154 "components/InspectElementModeController.js",
155 "components/InspectedPagePlaceholder.js",
156 "components/InspectorView.js", 155 "components/InspectorView.js",
157 "components/NativeBreakpointsSidebarPane.js", 156 "components/NativeBreakpointsSidebarPane.js",
158 "components/ObjectPopoverHelper.js", 157 "components/ObjectPopoverHelper.js",
159 "components/ObjectPropertiesSection.js", 158 "components/ObjectPropertiesSection.js",
160 "components/OverviewGrid.js", 159 "components/OverviewGrid.js",
161 "components/Panel.js", 160 "components/Panel.js",
162 "components/PropertiesSection.js", 161 "components/PropertiesSection.js",
163 "components/SearchableView.js", 162 "components/SearchableView.js",
164 "components/Section.js", 163 "components/Section.js",
165 "components/ShortcutsScreen.js", 164 "components/ShortcutsScreen.js",
166 "components/TimelineGrid.js", 165 "components/TimelineGrid.js",
167 "components/WorkerFrontendManager.js" 166 "components/WorkerFrontendManager.js"
168 ] 167 ]
169 }, 168 },
170 { 169 {
171 "name": "screencast", 170 "name": "screencast",
172 "dependencies": ["components"], 171 "dependencies": ["components"],
173 "sources": [ 172 "sources": [
174 "ScreencastView.js" 173 "ScreencastView.js"
175 ] 174 ]
176 }, 175 },
177 { 176 {
178 "name": "responsive_design", 177 "name": "toolbox",
179 "dependencies": ["components"], 178 "dependencies": ["ui", "sdk"],
180 "sources": [ 179 "sources": [
181 "MediaQueryInspector.js", 180 "toolbox/InspectedPagePlaceholder.js",
182 "ResponsiveDesignView.js" 181 "toolbox/MediaQueryInspector.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
« no previous file with comments | « Source/devtools/front_end/toolbox/ResponsiveDesignView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698