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

Side by Side Diff: Source/devtools/devtools.gyp

Issue 22638008: DevTools: Use CodeMirror modes instead of highlight tokenizers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address comments Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'front_end/Settings.js', 151 'front_end/Settings.js',
152 'front_end/ShortcutsScreen.js', 152 'front_end/ShortcutsScreen.js',
153 'front_end/ShowMoreDataGridNode.js', 153 'front_end/ShowMoreDataGridNode.js',
154 'front_end/SidebarOverlay.js', 154 'front_end/SidebarOverlay.js',
155 'front_end/SidebarPane.js', 155 'front_end/SidebarPane.js',
156 'front_end/SidebarView.js', 156 'front_end/SidebarView.js',
157 'front_end/SidebarTreeElement.js', 157 'front_end/SidebarTreeElement.js',
158 'front_end/SimpleWorkspaceProvider.js', 158 'front_end/SimpleWorkspaceProvider.js',
159 'front_end/SnippetStorage.js', 159 'front_end/SnippetStorage.js',
160 'front_end/SoftContextMenu.js', 160 'front_end/SoftContextMenu.js',
161 'front_end/SourceCSSTokenizer.js',
162 'front_end/SourceFrame.js', 161 'front_end/SourceFrame.js',
163 'front_end/SourceHTMLTokenizer.js',
164 'front_end/SourceJavaScriptTokenizer.js',
165 'front_end/SourceMap.js', 162 'front_end/SourceMap.js',
166 'front_end/SourceMapping.js', 163 'front_end/SourceMapping.js',
167 'front_end/SourceTokenizer.js',
168 'front_end/Spectrum.js', 164 'front_end/Spectrum.js',
169 'front_end/SplitView.js', 165 'front_end/SplitView.js',
170 'front_end/StatusBarButton.js', 166 'front_end/StatusBarButton.js',
171 'front_end/StylesSourceMapping.js', 167 'front_end/StylesSourceMapping.js',
172 'front_end/SuggestBox.js', 168 'front_end/SuggestBox.js',
173 'front_end/TabbedPane.js', 169 'front_end/TabbedPane.js',
174 'front_end/TestController.js', 170 'front_end/TestController.js',
175 'front_end/TextEditor.js', 171 'front_end/TextEditor.js',
176 'front_end/TextEditorHighlighter.js',
177 'front_end/TextRange.js', 172 'front_end/TextRange.js',
178 'front_end/TextEditorModel.js',
179 'front_end/TextPrompt.js', 173 'front_end/TextPrompt.js',
180 'front_end/TextUtils.js', 174 'front_end/TextUtils.js',
181 'front_end/TimelineGrid.js', 175 'front_end/TimelineGrid.js',
182 'front_end/TimelineManager.js', 176 'front_end/TimelineManager.js',
183 'front_end/TimelinePanelDescriptor.js', 177 'front_end/TimelinePanelDescriptor.js',
184 'front_end/Toolbar.js', 178 'front_end/Toolbar.js',
185 'front_end/TracingAgent.js', 179 'front_end/TracingAgent.js',
186 'front_end/treeoutline.js', 180 'front_end/treeoutline.js',
187 'front_end/UISourceCode.js', 181 'front_end/UISourceCode.js',
188 'front_end/UIString.js', 182 'front_end/UIString.js',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'front_end/AuditController.js', 314 'front_end/AuditController.js',
321 'front_end/AuditFormatters.js', 315 'front_end/AuditFormatters.js',
322 'front_end/AuditLauncherView.js', 316 'front_end/AuditLauncherView.js',
323 'front_end/AuditResultView.js', 317 'front_end/AuditResultView.js',
324 'front_end/AuditRules.js', 318 'front_end/AuditRules.js',
325 'front_end/AuditsPanel.js', 319 'front_end/AuditsPanel.js',
326 ], 320 ],
327 321
328 'devtools_codemirror_js_files': [ 322 'devtools_codemirror_js_files': [
329 'front_end/CodeMirrorTextEditor.js', 323 'front_end/CodeMirrorTextEditor.js',
324 'front_end/CodeMirrorUtils.js',
330 'front_end/cm/clike.js', 325 'front_end/cm/clike.js',
331 'front_end/cm/closebrackets.js', 326 'front_end/cm/closebrackets.js',
332 'front_end/cm/codemirror.js', 327 'front_end/cm/codemirror.js',
333 'front_end/cm/coffeescript.js', 328 'front_end/cm/coffeescript.js',
334 'front_end/cm/comment.js', 329 'front_end/cm/comment.js',
335 'front_end/cm/css.js', 330 'front_end/cm/css.js',
331 'front_end/cm/headlesscodemirror.js',
336 'front_end/cm/htmlembedded.js', 332 'front_end/cm/htmlembedded.js',
337 'front_end/cm/htmlmixed.js', 333 'front_end/cm/htmlmixed.js',
338 'front_end/cm/javascript.js', 334 'front_end/cm/javascript.js',
339 'front_end/cm/markselection.js', 335 'front_end/cm/markselection.js',
340 'front_end/cm/matchbrackets.js', 336 'front_end/cm/matchbrackets.js',
341 'front_end/cm/overlay.js', 337 'front_end/cm/overlay.js',
342 'front_end/cm/php.js', 338 'front_end/cm/php.js',
343 'front_end/cm/python.js', 339 'front_end/cm/python.js',
344 'front_end/cm/shell.js', 340 'front_end/cm/shell.js',
345 'front_end/cm/xml.js', 341 'front_end/cm/xml.js',
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
910 'destination': '<(PRODUCT_DIR)/resources/inspector', 906 'destination': '<(PRODUCT_DIR)/resources/inspector',
911 'files': [ 907 'files': [
912 '<@(devtools_standalone_files)', 908 '<@(devtools_standalone_files)',
913 ], 909 ],
914 }], 910 }],
915 }, 911 },
916 ], 912 ],
917 }], 913 }],
918 ], # conditions 914 ], # conditions
919 } 915 }
OLDNEW
« no previous file with comments | « LayoutTests/inspector/syntax-highlight-javascript-expected.txt ('k') | Source/devtools/front_end/CodeMirrorTextEditor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698