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

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

Issue 2975523002: DevTools: add console test helpers to new test runner & migrate a console test (Closed)
Patch Set: fix Created 3 years, 5 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
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,
},
};

Powered by Google App Engine
This is Rietveld 408576698