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

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

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1be70e9c880bed9106487ff467504d0ca6d53fa5..e48ad00504858eeca545160b8eff16bf45937baa 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,14 +24,15 @@ const APPLICATION_DESCRIPTORS = [
const MODULES_TO_REMOVE = [];
const JS_FILES_MAPPING = [
- {file: 'sdk/NetworkLog.js', new: 'network_log'},
- {file: 'sdk/HAREntry.js', new: 'network_log'},
+ {file: 'common/Text.js', new: 'text_utils'},
+ {file: 'common/TextUtils.js', new: 'text_utils'},
+ {file: 'common/TextRange.js', new: 'text_utils'},
];
const MODULE_MAPPING = {
- network_log: {
- dependencies: ['sdk'],
- dependents: ['audits', 'components', 'console_model', 'extensions', 'main', 'network'],
+ text_utils: {
+ dependencies: [],
+ dependents: ['common'],
applications: ['inspector.json'],
autostart: true, // set to autostart because of extensions
},
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698