Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / source_frame / module.json
bloba25880700e493624780111f7c6bee38c14c1aa99
2     "extensions": [
3         {
4             "type": "@WebInspector.InplaceEditor",
5             "className": "WebInspector.CodeMirrorUtils"
6         },
7         {
8             "type": "@WebInspector.TokenizerFactory",
9             "className": "WebInspector.CodeMirrorUtils.TokenizerFactory"
10         },
11         {
12             "type": "setting",
13             "category": "Sources",
14             "title": "Default indentation:",
15             "settingName": "textEditorIndent",
16             "settingType": "enum",
17             "defaultValue": "    ",
18             "options": [
19                 ["2 spaces", "  "],
20                 ["4 spaces", "    "],
21                 ["8 spaces", "        "],
22                 ["Tab character", "\t"]
23             ]
24         }
25     ],
26     "dependencies": [
27         "components"
28     ],
29     "scripts": [
30         "../cm/codemirror.js",
31         "../cm/css.js",
32         "../cm/javascript.js",
33         "../cm/xml.js",
34         "../cm/htmlmixed.js",
35         "../cm/htmlembedded.js",
37         "../cm/matchbrackets.js",
38         "../cm/closebrackets.js",
39         "../cm/markselection.js",
40         "../cm/comment.js",
41         "../cm/overlay.js",
42         "../cm/activeline.js",
44         "CodeMirrorUtils.js",
45         "CodeMirrorDictionary.js",
46         "TextEditorAutocompleteController.js",
47         "CodeMirrorTextEditor.js",
48         "FontView.js",
49         "ImageView.js",
50         "SourceFrame.js",
51         "GoToLineDialog.js",
52         "ResourceSourceFrame.js"
53     ],
54     "skip_compilation": [
55         "../cm/codemirror.js",
56         "../cm/css.js",
57         "../cm/javascript.js",
58         "../cm/xml.js",
59         "../cm/htmlmixed.js",
60         "../cm/htmlembedded.js",
62         "../cm/matchbrackets.js",
63         "../cm/closebrackets.js",
64         "../cm/markselection.js",
65         "../cm/comment.js",
66         "../cm/overlay.js",
67         "../cm/activeline.js"
68     ],
69     "resources": [
70         "../cm/codemirror.css",
71         "cmdevtools.css",
72         "fontView.css",
73         "imageView.css",
74         "resourceSourceFrame.css"
75     ]