| 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 d7ac2f598412a60944745fcd7d7d243fc5f9fead..08754965603b48572a4e90b28daf6aa2d921762b 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
|
| @@ -40,8 +40,9 @@ const MODULES_TO_REMOVE = [];
|
| * If moving to an existing module:
|
| * {file: 'ui/SomeFile.js', existing: 'common'}
|
| */
|
| -const JS_FILES_MAPPING =
|
| - [{file: 'common/FormatterWorkerPool.js', new: 'formatter'}, {file: 'sources/ScriptFormatter.js', new: 'formatter'}];
|
| +const JS_FILES_MAPPING = [
|
| + {file: 'main/WarningErrorCounter.js', new: 'counters'},
|
| +];
|
|
|
| /**
|
| * List all new modules here:
|
| @@ -53,11 +54,11 @@ const JS_FILES_MAPPING =
|
| * }
|
| */
|
| const MODULE_MAPPING = {
|
| - formatter: {
|
| - dependencies: ['common'],
|
| - dependents: ['sources', 'audits', 'network', 'sass'],
|
| + counters: {
|
| + dependencies: ['common', 'ui', 'console_model'],
|
| + dependents: ['main'],
|
| applications: ['inspector.json'],
|
| - autostart: false,
|
| + autostart: true,
|
| },
|
| };
|
|
|
|
|