| 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
|
| },
|
|
|