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

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

Issue 104523002: [DevTools] Add power profiler and power overview in timeline panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/devtools/front_end/PowerProfiler.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'front_end/ObjectPopoverHelper.js', 116 'front_end/ObjectPopoverHelper.js',
117 'front_end/ObjectPropertiesSection.js', 117 'front_end/ObjectPropertiesSection.js',
118 'front_end/OverridesSupport.js', 118 'front_end/OverridesSupport.js',
119 'front_end/OverviewGrid.js', 119 'front_end/OverviewGrid.js',
120 'front_end/PaintProfiler.js', 120 'front_end/PaintProfiler.js',
121 'front_end/Panel.js', 121 'front_end/Panel.js',
122 'front_end/ParsedURL.js', 122 'front_end/ParsedURL.js',
123 'front_end/Placard.js', 123 'front_end/Placard.js',
124 'front_end/Platform.js', 124 'front_end/Platform.js',
125 'front_end/Popover.js', 125 'front_end/Popover.js',
126 'front_end/PowerProfiler.js',
126 'front_end/PresentationConsoleMessageHelper.js', 127 'front_end/PresentationConsoleMessageHelper.js',
127 'front_end/Progress.js', 128 'front_end/Progress.js',
128 'front_end/ProgressIndicator.js', 129 'front_end/ProgressIndicator.js',
129 'front_end/PropertiesSection.js', 130 'front_end/PropertiesSection.js',
130 'front_end/RemoteObject.js', 131 'front_end/RemoteObject.js',
131 'front_end/Resource.js', 132 'front_end/Resource.js',
132 'front_end/ResourceScriptMapping.js', 133 'front_end/ResourceScriptMapping.js',
133 'front_end/ResourceTreeModel.js', 134 'front_end/ResourceTreeModel.js',
134 'front_end/ResourceType.js', 135 'front_end/ResourceType.js',
135 'front_end/ResourceUtils.js', 136 'front_end/ResourceUtils.js',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'front_end/TimelineFrameModel.js', 314 'front_end/TimelineFrameModel.js',
314 'front_end/TimelineModel.js', 315 'front_end/TimelineModel.js',
315 'front_end/TimelinePresentationModel.js', 316 'front_end/TimelinePresentationModel.js',
316 'front_end/TimelineOverviewPane.js', 317 'front_end/TimelineOverviewPane.js',
317 'front_end/TimelineEventOverview.js', 318 'front_end/TimelineEventOverview.js',
318 'front_end/TimelineFlameChart.js', 319 'front_end/TimelineFlameChart.js',
319 'front_end/TimelineFrameOverview.js', 320 'front_end/TimelineFrameOverview.js',
320 'front_end/TimelineMemoryOverview.js', 321 'front_end/TimelineMemoryOverview.js',
321 'front_end/TimelineUIUtils.js', 322 'front_end/TimelineUIUtils.js',
322 'front_end/TimelineView.js', 323 'front_end/TimelineView.js',
324 'front_end/TimelinePowerOverview.js',
323 'front_end/TimelinePanel.js', 325 'front_end/TimelinePanel.js',
324 ], 326 ],
325 'devtools_profiles_js_files': [ 327 'devtools_profiles_js_files': [
326 'front_end/BottomUpProfileDataGridTree.js', 328 'front_end/BottomUpProfileDataGridTree.js',
327 'front_end/CPUProfileView.js', 329 'front_end/CPUProfileView.js',
328 'front_end/HeapSnapshotCommon.js', 330 'front_end/HeapSnapshotCommon.js',
329 'front_end/HeapSnapshotDataGrids.js', 331 'front_end/HeapSnapshotDataGrids.js',
330 'front_end/HeapSnapshotGridNodes.js', 332 'front_end/HeapSnapshotGridNodes.js',
331 'front_end/HeapSnapshotProxy.js', 333 'front_end/HeapSnapshotProxy.js',
332 'front_end/HeapSnapshotView.js', 334 'front_end/HeapSnapshotView.js',
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 'front_end/TempStorageSharedWorker.js', 480 'front_end/TempStorageSharedWorker.js',
479 ], 481 ],
480 'devtools_script_formatter_worker_js_files': [ 482 'devtools_script_formatter_worker_js_files': [
481 'front_end/CSSFormatter.js', 483 'front_end/CSSFormatter.js',
482 'front_end/JavaScriptFormatter.js', 484 'front_end/JavaScriptFormatter.js',
483 'front_end/ScriptFormatterWorker.js', 485 'front_end/ScriptFormatterWorker.js',
484 'front_end/utilities.js', 486 'front_end/utilities.js',
485 ], 487 ],
486 }, 488 },
487 } 489 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/PowerProfiler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698