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

Unified Diff: third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js

Issue 2751193003: [DevTools] Move ConsoleModel to it's own module (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js
diff --git a/third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js b/third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js
index 307f117793c6c8e24b0a9fce742309a6e2ab143b..c07c5f72fcf08efc96d633334b2f5956db24038f 100644
--- a/third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js
+++ b/third_party/WebKit/Source/devtools/scripts/extract_module/extract_module.js
@@ -24,17 +24,13 @@ const APPLICATION_DESCRIPTORS = [
const MODULES_TO_REMOVE = [];
const JS_FILES_MAPPING = [
- {file: 'components/CustomPreviewComponent.js', new: 'object_ui'},
- {file: 'components/ObjectPopoverHelper.js', new: 'object_ui'},
- {file: 'components/ObjectPropertiesSection.js', new: 'object_ui'},
- {file: 'components/JavaScriptAutocomplete.js', new: 'object_ui'},
- {file: 'components/RemoteObjectPreviewFormatter.js', new: 'object_ui'},
+ {file: 'sdk/ConsoleModel.js', new: 'console_model'},
];
const MODULE_MAPPING = {
- object_ui: {
- dependencies: ['ui', 'sdk', 'components'],
- dependents: ['console', 'sources', 'extensions', 'event_listeners', 'resources', 'profiler', 'network'],
+ console_model: {
+ dependencies: ['sdk'],
+ dependents: ['bindings', 'console', 'main'],
applications: ['inspector.json'],
autostart: true, // set to autostart because of extensions
},
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698