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

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

Issue 212683005: Timeline Trace viewer prototype (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased, extracted model into a file of its own Created 6 years, 8 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
« no previous file with comments | « LayoutTests/inspector/tracing.html ('k') | Source/devtools/front_end/MemoryCountersGraph.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'front_end/Target.js', 168 'front_end/Target.js',
169 'front_end/TempFile.js', 169 'front_end/TempFile.js',
170 'front_end/TestController.js', 170 'front_end/TestController.js',
171 'front_end/TextEditor.js', 171 'front_end/TextEditor.js',
172 'front_end/TextRange.js', 172 'front_end/TextRange.js',
173 'front_end/TextPrompt.js', 173 'front_end/TextPrompt.js',
174 'front_end/TextUtils.js', 174 'front_end/TextUtils.js',
175 'front_end/TimelineGrid.js', 175 'front_end/TimelineGrid.js',
176 'front_end/TimelineManager.js', 176 'front_end/TimelineManager.js',
177 'front_end/TracingAgent.js', 177 'front_end/TracingAgent.js',
178 'front_end/TracingModel.js',
178 'front_end/treeoutline.js', 179 'front_end/treeoutline.js',
179 'front_end/UISourceCode.js', 180 'front_end/UISourceCode.js',
180 'front_end/UIString.js', 181 'front_end/UIString.js',
181 'front_end/UIUtils.js', 182 'front_end/UIUtils.js',
182 'front_end/UserMetrics.js', 183 'front_end/UserMetrics.js',
183 'front_end/utilities.js', 184 'front_end/utilities.js',
184 'front_end/View.js', 185 'front_end/View.js',
185 'front_end/ViewportControl.js', 186 'front_end/ViewportControl.js',
186 'front_end/WebInspector.js', 187 'front_end/WebInspector.js',
187 'front_end/WorkerManager.js', 188 'front_end/WorkerManager.js',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'front_end/TimelineOverviewPane.js', 318 'front_end/TimelineOverviewPane.js',
318 'front_end/TimelineEventOverview.js', 319 'front_end/TimelineEventOverview.js',
319 'front_end/TimelineFlameChart.js', 320 'front_end/TimelineFlameChart.js',
320 'front_end/TimelineFrameOverview.js', 321 'front_end/TimelineFrameOverview.js',
321 'front_end/TimelineMemoryOverview.js', 322 'front_end/TimelineMemoryOverview.js',
322 'front_end/TimelineUIUtils.js', 323 'front_end/TimelineUIUtils.js',
323 'front_end/TimelineView.js', 324 'front_end/TimelineView.js',
324 'front_end/TimelinePowerGraph.js', 325 'front_end/TimelinePowerGraph.js',
325 'front_end/TimelinePowerOverview.js', 326 'front_end/TimelinePowerOverview.js',
326 'front_end/TimelinePanel.js', 327 'front_end/TimelinePanel.js',
328 'front_end/TimelineTracingView.js',
327 ], 329 ],
328 'devtools_profiles_js_files': [ 330 'devtools_profiles_js_files': [
329 'front_end/BottomUpProfileDataGridTree.js', 331 'front_end/BottomUpProfileDataGridTree.js',
330 'front_end/CPUProfileFlameChart.js', 332 'front_end/CPUProfileFlameChart.js',
331 'front_end/CPUProfileView.js', 333 'front_end/CPUProfileView.js',
332 'front_end/HeapSnapshotCommon.js', 334 'front_end/HeapSnapshotCommon.js',
333 'front_end/HeapSnapshotDataGrids.js', 335 'front_end/HeapSnapshotDataGrids.js',
334 'front_end/HeapSnapshotGridNodes.js', 336 'front_end/HeapSnapshotGridNodes.js',
335 'front_end/HeapSnapshotProxy.js', 337 'front_end/HeapSnapshotProxy.js',
336 'front_end/HeapSnapshotView.js', 338 'front_end/HeapSnapshotView.js',
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 'front_end/TempStorageSharedWorker.js', 484 'front_end/TempStorageSharedWorker.js',
483 ], 485 ],
484 'devtools_script_formatter_worker_js_files': [ 486 'devtools_script_formatter_worker_js_files': [
485 'front_end/CSSFormatter.js', 487 'front_end/CSSFormatter.js',
486 'front_end/JavaScriptFormatter.js', 488 'front_end/JavaScriptFormatter.js',
487 'front_end/ScriptFormatterWorker.js', 489 'front_end/ScriptFormatterWorker.js',
488 'front_end/utilities.js', 490 'front_end/utilities.js',
489 ], 491 ],
490 }, 492 },
491 } 493 }
OLDNEW
« no previous file with comments | « LayoutTests/inspector/tracing.html ('k') | Source/devtools/front_end/MemoryCountersGraph.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698