Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / source_frame / module.json
1 {
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": "ui-setting",
13             "section": "Sources",
14             "title": "Default indentation:",
15             "settingName": "textEditorIndent",
16             "settingType": "select",
17             "options": [
18                 ["2 spaces", "  "],
19                 ["4 spaces", "    "],
20                 ["8 spaces", "        "],
21                 ["Tab character", "\t"]
22             ]
23         }
24     ],
25     "dependencies": [
26         "components"
27     ],
28     "scripts": [
29         "../cm/codemirror.js",
30         "../cm/css.js",
31         "../cm/javascript.js",
32         "../cm/xml.js",
33         "../cm/htmlmixed.js",
34
35         "../cm/matchbrackets.js",
36         "../cm/closebrackets.js",
37         "../cm/markselection.js",
38         "../cm/comment.js",
39         "../cm/overlay.js",
40
41         "../cm/htmlembedded.js",
42         "../cm/clike.js",
43         "../cm/coffeescript.js",
44         "../cm/php.js",
45         "../cm/python.js",
46         "../cm/shell.js",
47         "CodeMirrorUtils.js",
48         "CodeMirrorTextEditor.js",
49         "FontView.js",
50         "ImageView.js",
51         "SourceFrame.js",
52         "GoToLineDialog.js",
53         "ResourceSourceFrame.js"
54     ],
55     "skip_compilation": [
56         "../cm/codemirror.js",
57         "../cm/css.js",
58         "../cm/javascript.js",
59         "../cm/xml.js",
60         "../cm/htmlmixed.js",
61
62         "../cm/matchbrackets.js",
63         "../cm/closebrackets.js",
64         "../cm/markselection.js",
65         "../cm/comment.js",
66         "../cm/overlay.js",
67
68         "../cm/htmlembedded.js",
69         "../cm/clike.js",
70         "../cm/coffeescript.js",
71         "../cm/php.js",
72         "../cm/python.js",
73         "../cm/shell.js"
74     ],
75     "stylesheets": [
76         "../cm/codemirror.css",
77         "cmdevtools.css",
78         "fontView.css",
79         "imageView.css",
80         "resourceSourceFrame.css"
81     ]
82 }