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

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

Issue 563463003: DevTools: extract TracingManager from TracingModel, step 2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'front_end/sdk/PowerProfiler.js', 146 'front_end/sdk/PowerProfiler.js',
147 'front_end/sdk/RemoteObject.js', 147 'front_end/sdk/RemoteObject.js',
148 'front_end/sdk/Resource.js', 148 'front_end/sdk/Resource.js',
149 'front_end/sdk/ResourceTreeModel.js', 149 'front_end/sdk/ResourceTreeModel.js',
150 'front_end/sdk/RuntimeModel.js', 150 'front_end/sdk/RuntimeModel.js',
151 'front_end/sdk/Script.js', 151 'front_end/sdk/Script.js',
152 'front_end/sdk/SnippetStorage.js', 152 'front_end/sdk/SnippetStorage.js',
153 'front_end/sdk/SourceMap.js', 153 'front_end/sdk/SourceMap.js',
154 'front_end/sdk/Target.js', 154 'front_end/sdk/Target.js',
155 'front_end/sdk/TimelineManager.js', 155 'front_end/sdk/TimelineManager.js',
156 'front_end/sdk/TracingModel.js', 156 'front_end/sdk/TracingManager.js',
157 'front_end/sdk/WorkerManager.js', 157 'front_end/sdk/WorkerManager.js',
158 'front_end/sdk/WorkerTargetManager.js', 158 'front_end/sdk/WorkerTargetManager.js',
159 ], 159 ],
160 'devtools_workspace_js_files': [ 160 'devtools_workspace_js_files': [
161 'front_end/workspace/FileManager.js', 161 'front_end/workspace/FileManager.js',
162 'front_end/workspace/FileSystemMapping.js', 162 'front_end/workspace/FileSystemMapping.js',
163 'front_end/workspace/FileSystemWorkspaceBinding.js', 163 'front_end/workspace/FileSystemWorkspaceBinding.js',
164 'front_end/workspace/IsolatedFileSystem.js', 164 'front_end/workspace/IsolatedFileSystem.js',
165 'front_end/workspace/IsolatedFileSystemManager.js', 165 'front_end/workspace/IsolatedFileSystemManager.js',
166 'front_end/workspace/SearchConfig.js', 166 'front_end/workspace/SearchConfig.js',
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 'front_end/timeline/TimelineModelImpl.js', 495 'front_end/timeline/TimelineModelImpl.js',
496 'front_end/timeline/TimelineOverviewPane.js', 496 'front_end/timeline/TimelineOverviewPane.js',
497 'front_end/timeline/TimelinePaintProfilerView.js', 497 'front_end/timeline/TimelinePaintProfilerView.js',
498 'front_end/timeline/TimelinePanel.js', 498 'front_end/timeline/TimelinePanel.js',
499 'front_end/timeline/TimelinePowerGraph.js', 499 'front_end/timeline/TimelinePowerGraph.js',
500 'front_end/timeline/TimelinePowerOverview.js', 500 'front_end/timeline/TimelinePowerOverview.js',
501 'front_end/timeline/TimelinePresentationModel.js', 501 'front_end/timeline/TimelinePresentationModel.js',
502 'front_end/timeline/TimelineUIUtils.js', 502 'front_end/timeline/TimelineUIUtils.js',
503 'front_end/timeline/TimelineUIUtilsImpl.js', 503 'front_end/timeline/TimelineUIUtilsImpl.js',
504 'front_end/timeline/TimelineView.js', 504 'front_end/timeline/TimelineView.js',
505 'front_end/timeline/TracingModel.js',
505 'front_end/timeline/TracingTimelineModel.js', 506 'front_end/timeline/TracingTimelineModel.js',
506 'front_end/timeline/TracingTimelineUIUtils.js', 507 'front_end/timeline/TracingTimelineUIUtils.js',
507 'front_end/timeline/TransformController.js', 508 'front_end/timeline/TransformController.js',
508 ], 509 ],
509 510
510 # Third-party code. 511 # Third-party code.
511 'devtools_cm_css_files': [ 512 'devtools_cm_css_files': [
512 'front_end/cm/codemirror.css', 513 'front_end/cm/codemirror.css',
513 ], 514 ],
514 'devtools_cm_js_files': [ 515 'devtools_cm_js_files': [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 'front_end/Images/thumbHoverHoriz.png', 617 'front_end/Images/thumbHoverHoriz.png',
617 'front_end/Images/thumbHoverVert.png', 618 'front_end/Images/thumbHoverVert.png',
618 'front_end/Images/thumbVert.png', 619 'front_end/Images/thumbVert.png',
619 'front_end/Images/toolbarItemSelected.png', 620 'front_end/Images/toolbarItemSelected.png',
620 ], 621 ],
621 'devtools_extension_api_files': [ 622 'devtools_extension_api_files': [
622 'front_end/extensions/ExtensionAPI.js', 623 'front_end/extensions/ExtensionAPI.js',
623 ], 624 ],
624 }, 625 },
625 } 626 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/inspector.html » ('j') | Source/devtools/front_end/sdk/TracingManager.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698