| OLD | NEW |
| 1 { | 1 { |
| 2 "dependencies": [ | 2 "dependencies": [ |
| 3 "common", | 3 "common", |
| 4 "host", | 4 "host", |
| 5 "platform" | 5 "platform" |
| 6 ], | 6 ], |
| 7 "extensions": [ | 7 "extensions": [ |
| 8 { | 8 { |
| 9 "type": "setting", | 9 "type": "setting", |
| 10 "settingName": "blockedURLs", | 10 "settingName": "blockedURLs", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 }, | 53 }, |
| 54 { | 54 { |
| 55 "type": "setting", | 55 "type": "setting", |
| 56 "settingName": "showMetricsRulers", | 56 "settingName": "showMetricsRulers", |
| 57 "settingType": "boolean", | 57 "settingType": "boolean", |
| 58 "defaultValue": false | 58 "defaultValue": false |
| 59 } | 59 } |
| 60 ], | 60 ], |
| 61 "scripts": [ | 61 "scripts": [ |
| 62 "InspectorBackend.js", | 62 "InspectorBackend.js", |
| 63 "../InspectorBackendCommands.js", | 63 "../gen/InspectorBackendCommands.js", |
| 64 "InspectorBackendHostedMode.js", | |
| 65 "Target.js", | 64 "Target.js", |
| 66 "TargetManager.js", | 65 "TargetManager.js", |
| 67 "ApplicationCacheModel.js", | 66 "ApplicationCacheModel.js", |
| 68 "ConsoleModel.js", | 67 "ConsoleModel.js", |
| 69 "ContentProviders.js", | 68 "ContentProviders.js", |
| 70 "CookieParser.js", | 69 "CookieParser.js", |
| 71 "ProfileTreeModel.js", | 70 "ProfileTreeModel.js", |
| 72 "CPUProfileDataModel.js", | 71 "CPUProfileDataModel.js", |
| 73 "CPUProfilerModel.js", | 72 "CPUProfilerModel.js", |
| 74 "CSSMatchedStyles.js", | 73 "CSSMatchedStyles.js", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 92 "Script.js", | 91 "Script.js", |
| 93 "ServiceWorkerCacheModel.js", | 92 "ServiceWorkerCacheModel.js", |
| 94 "RemoteObject.js", | 93 "RemoteObject.js", |
| 95 "Resource.js", | 94 "Resource.js", |
| 96 "ResourceTreeModel.js", | 95 "ResourceTreeModel.js", |
| 97 "SourceMap.js", | 96 "SourceMap.js", |
| 98 "NetworkManager.js", | 97 "NetworkManager.js", |
| 99 "NetworkRequest.js", | 98 "NetworkRequest.js", |
| 100 "PaintProfiler.js", | 99 "PaintProfiler.js", |
| 101 "HeapProfilerModel.js", | 100 "HeapProfilerModel.js", |
| 102 "../SupportedCSSProperties.js" | 101 "../gen/SupportedCSSProperties.js" |
| 103 ], | 102 ], |
| 104 "skip_compilation": [ | 103 "skip_compilation": [ |
| 105 "../InspectorBackendCommands.js", | 104 "../gen/InspectorBackendCommands.js", |
| 106 "../SupportedCSSProperties.js" | 105 "../gen/SupportedCSSProperties.js" |
| 107 ] | 106 ] |
| 108 } | 107 } |
| OLD | NEW |