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

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

Issue 472263002: DevTools: make profiling lock global rather than per Target (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/devtools/front_end/audits/AuditLauncherView.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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'front_end/suggestBox.css', 60 'front_end/suggestBox.css',
61 'front_end/tabbedPane.css', 61 'front_end/tabbedPane.css',
62 '<@(devtools_main_js_files)', 62 '<@(devtools_main_js_files)',
63 '<@(devtools_standalone_files)', 63 '<@(devtools_standalone_files)',
64 ], 64 ],
65 'devtools_common_js_files': [ 65 'devtools_common_js_files': [
66 'front_end/common/Color.js', 66 'front_end/common/Color.js',
67 'front_end/common/Console.js', 67 'front_end/common/Console.js',
68 'front_end/common/ContentProvider.js', 68 'front_end/common/ContentProvider.js',
69 'front_end/common/Geometry.js', 69 'front_end/common/Geometry.js',
70 'front_end/common/Lock.js',
70 'front_end/common/ModuleExtensionInterfaces.js', 71 'front_end/common/ModuleExtensionInterfaces.js',
71 'front_end/common/modules.js', 72 'front_end/common/modules.js',
72 'front_end/common/NotificationService.js', 73 'front_end/common/NotificationService.js',
73 'front_end/common/Object.js', 74 'front_end/common/Object.js',
74 'front_end/common/ParsedURL.js', 75 'front_end/common/ParsedURL.js',
75 'front_end/common/Progress.js', 76 'front_end/common/Progress.js',
76 'front_end/common/ResourceType.js', 77 'front_end/common/ResourceType.js',
77 'front_end/common/Settings.js', 78 'front_end/common/Settings.js',
78 'front_end/common/StaticContentProvider.js', 79 'front_end/common/StaticContentProvider.js',
79 'front_end/common/TextRange.js', 80 'front_end/common/TextRange.js',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'front_end/sdk/CSSStyleModel.js', 133 'front_end/sdk/CSSStyleModel.js',
133 'front_end/sdk/Database.js', 134 'front_end/sdk/Database.js',
134 'front_end/sdk/DebuggerModel.js', 135 'front_end/sdk/DebuggerModel.js',
135 'front_end/sdk/DOMModel.js', 136 'front_end/sdk/DOMModel.js',
136 'front_end/sdk/DOMStorage.js', 137 'front_end/sdk/DOMStorage.js',
137 'front_end/sdk/FileSystemModel.js', 138 'front_end/sdk/FileSystemModel.js',
138 'front_end/sdk/HeapProfilerModel.js', 139 'front_end/sdk/HeapProfilerModel.js',
139 'front_end/sdk/IndexedDBModel.js', 140 'front_end/sdk/IndexedDBModel.js',
140 'front_end/sdk/InspectorBackend.js', 141 'front_end/sdk/InspectorBackend.js',
141 'front_end/sdk/LayerTreeModel.js', 142 'front_end/sdk/LayerTreeModel.js',
143 'front_end/sdk/Locks.js',
142 'front_end/sdk/NetworkLog.js', 144 'front_end/sdk/NetworkLog.js',
143 'front_end/sdk/NetworkManager.js', 145 'front_end/sdk/NetworkManager.js',
144 'front_end/sdk/NetworkRequest.js', 146 'front_end/sdk/NetworkRequest.js',
145 'front_end/sdk/OverridesSupport.js', 147 'front_end/sdk/OverridesSupport.js',
146 'front_end/sdk/PaintProfiler.js', 148 'front_end/sdk/PaintProfiler.js',
147 'front_end/sdk/PowerProfiler.js', 149 'front_end/sdk/PowerProfiler.js',
148 'front_end/sdk/RemoteObject.js', 150 'front_end/sdk/RemoteObject.js',
149 'front_end/sdk/Resource.js', 151 'front_end/sdk/Resource.js',
150 'front_end/sdk/ResourceTreeModel.js', 152 'front_end/sdk/ResourceTreeModel.js',
151 'front_end/sdk/RuntimeModel.js', 153 'front_end/sdk/RuntimeModel.js',
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 'front_end/Images/thumbHoverHoriz.png', 627 'front_end/Images/thumbHoverHoriz.png',
626 'front_end/Images/thumbHoverVert.png', 628 'front_end/Images/thumbHoverVert.png',
627 'front_end/Images/thumbVert.png', 629 'front_end/Images/thumbVert.png',
628 'front_end/Images/toolbarItemSelected.png', 630 'front_end/Images/toolbarItemSelected.png',
629 ], 631 ],
630 'devtools_extension_api_files': [ 632 'devtools_extension_api_files': [
631 'front_end/extensions/ExtensionAPI.js', 633 'front_end/extensions/ExtensionAPI.js',
632 ], 634 ],
633 }, 635 },
634 } 636 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/audits/AuditLauncherView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698