| 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 c07c5f72fcf08efc96d633334b2f5956db24038f..1be70e9c880bed9106487ff467504d0ca6d53fa5 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,13 +24,14 @@ const APPLICATION_DESCRIPTORS = [
|
| const MODULES_TO_REMOVE = [];
|
|
|
| const JS_FILES_MAPPING = [
|
| - {file: 'sdk/ConsoleModel.js', new: 'console_model'},
|
| + {file: 'sdk/NetworkLog.js', new: 'network_log'},
|
| + {file: 'sdk/HAREntry.js', new: 'network_log'},
|
| ];
|
|
|
| const MODULE_MAPPING = {
|
| - console_model: {
|
| + network_log: {
|
| dependencies: ['sdk'],
|
| - dependents: ['bindings', 'console', 'main'],
|
| + dependents: ['audits', 'components', 'console_model', 'extensions', 'main', 'network'],
|
| applications: ['inspector.json'],
|
| autostart: true, // set to autostart because of extensions
|
| },
|
|
|