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

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

Issue 710033003: [DevTools] Extract part of DevTools into inspector app. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 1 month 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 | « Source/devtools/devtools.gyp ('k') | Source/devtools/front_end/devtools.css » ('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 21 matching lines...) Expand all
32 'variables': { 32 'variables': {
33 # If debug_devtools is set to 1, JavaScript files for DevTools are 33 # If debug_devtools is set to 1, JavaScript files for DevTools are
34 # stored as is. Otherwise, a concatenated file is stored. 34 # stored as is. Otherwise, a concatenated file is stored.
35 'debug_devtools%': 0, 35 'debug_devtools%': 0,
36 # This list should contain all "autostart" modules from all apps. 36 # This list should contain all "autostart" modules from all apps.
37 'devtools_core_files': [ 37 'devtools_core_files': [
38 '<@(devtools_bindings_js_files)', 38 '<@(devtools_bindings_js_files)',
39 '<@(devtools_common_js_files)', 39 '<@(devtools_common_js_files)',
40 '<@(devtools_components_js_files)', 40 '<@(devtools_components_js_files)',
41 '<@(devtools_core_base_files)', 41 '<@(devtools_core_base_files)',
42 '<@(devtools_devtools_app_js_files)',
42 '<@(devtools_host_js_files)', 43 '<@(devtools_host_js_files)',
43 '<@(devtools_main_js_files)', 44 '<@(devtools_main_js_files)',
44 '<@(devtools_platform_js_files)', 45 '<@(devtools_platform_js_files)',
45 '<@(devtools_screencast_js_files)', 46 '<@(devtools_screencast_js_files)',
46 '<@(devtools_sdk_js_files)', 47 '<@(devtools_sdk_js_files)',
47 '<@(devtools_toolbox_bootstrap_js_files)', 48 '<@(devtools_toolbox_bootstrap_js_files)',
48 '<@(devtools_toolbox_js_files)', 49 '<@(devtools_toolbox_js_files)',
49 '<@(devtools_ui_js_files)', 50 '<@(devtools_ui_js_files)',
50 '<@(devtools_workspace_js_files)', 51 '<@(devtools_workspace_js_files)',
51 '<@(devtools_core_css_files)', 52 '<@(devtools_core_css_files)',
52 ], 53 ],
53 'devtools_core_base_files': [ 54 'devtools_core_base_files': [
54 'front_end/devtools.css', 55 'front_end/devtools.css',
55 'front_end/devtools.js', 56 'front_end/devtools.js',
56 'front_end/devtools.json', 57 'front_end/devtools.json',
58 'front_end/inspector.css',
59 'front_end/inspector.js',
60 'front_end/inspector.json',
57 'front_end/toolbox.css', 61 'front_end/toolbox.css',
58 'front_end/toolbox.js', 62 'front_end/toolbox.js',
59 'front_end/toolbox.json', 63 'front_end/toolbox.json',
60 'front_end/Runtime.js', 64 'front_end/Runtime.js',
61 ], 65 ],
62 'devtools_core_css_files': [ 66 'devtools_core_css_files': [
63 'front_end/dialog.css', 67 'front_end/dialog.css',
64 'front_end/inspectorCommon.css', 68 'front_end/inspectorCommon.css',
65 'front_end/inspectorStyle.css', 69 'front_end/inspectorStyle.css',
66 'front_end/inspectorSyntaxHighlight.css', 70 'front_end/inspectorSyntaxHighlight.css',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'front_end/components/OverviewGrid.js', 120 'front_end/components/OverviewGrid.js',
117 'front_end/components/Panel.js', 121 'front_end/components/Panel.js',
118 'front_end/components/PropertiesSection.js', 122 'front_end/components/PropertiesSection.js',
119 'front_end/components/SearchableView.js', 123 'front_end/components/SearchableView.js',
120 'front_end/components/Section.js', 124 'front_end/components/Section.js',
121 'front_end/components/ShortcutsScreen.js', 125 'front_end/components/ShortcutsScreen.js',
122 'front_end/components/TargetsComboBoxController.js', 126 'front_end/components/TargetsComboBoxController.js',
123 'front_end/components/TimelineGrid.js', 127 'front_end/components/TimelineGrid.js',
124 ], 128 ],
125 'devtools_host_js_files': [ 129 'devtools_host_js_files': [
130 'front_end/host/InspectorAppHost.js',
126 'front_end/host/InspectorFrontendHost.js', 131 'front_end/host/InspectorFrontendHost.js',
127 'front_end/host/Platform.js', 132 'front_end/host/Platform.js',
128 'front_end/host/UserMetrics.js', 133 'front_end/host/UserMetrics.js',
129 ], 134 ],
130 'devtools_screencast_js_files': [ 135 'devtools_screencast_js_files': [
131 'front_end/screencast/screencastView.css', 136 'front_end/screencast/screencastView.css',
132 'front_end/screencast/ScreencastView.js', 137 'front_end/screencast/ScreencastView.js',
133 ], 138 ],
134 'devtools_sdk_js_files': [ 139 'devtools_sdk_js_files': [
135 'front_end/sdk/AnimationModel.js', 140 'front_end/sdk/AnimationModel.js',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 'front_end/bindings/NetworkWorkspaceBinding.js', 202 'front_end/bindings/NetworkWorkspaceBinding.js',
198 'front_end/bindings/PresentationConsoleMessageHelper.js', 203 'front_end/bindings/PresentationConsoleMessageHelper.js',
199 'front_end/bindings/ResourceScriptMapping.js', 204 'front_end/bindings/ResourceScriptMapping.js',
200 'front_end/bindings/ResourceUtils.js', 205 'front_end/bindings/ResourceUtils.js',
201 'front_end/bindings/SASSSourceMapping.js', 206 'front_end/bindings/SASSSourceMapping.js',
202 'front_end/bindings/ScriptSnippetModel.js', 207 'front_end/bindings/ScriptSnippetModel.js',
203 'front_end/bindings/StylesSourceMapping.js', 208 'front_end/bindings/StylesSourceMapping.js',
204 'front_end/bindings/TempFile.js', 209 'front_end/bindings/TempFile.js',
205 'front_end/bindings/WorkspaceController.js', 210 'front_end/bindings/WorkspaceController.js',
206 ], 211 ],
212 'devtools_devtools_app_js_files': [
213 'front_end/devtools_app/DevToolsApp.js',
214 ],
207 'devtools_platform_js_files': [ 215 'devtools_platform_js_files': [
208 'front_end/platform/DOMExtension.js', 216 'front_end/platform/DOMExtension.js',
209 'front_end/platform/Promise.js', 217 'front_end/platform/Promise.js',
210 'front_end/platform/utilities.js', 218 'front_end/platform/utilities.js',
211 ], 219 ],
212 'devtools_toolbox_bootstrap_js_files': [ 220 'devtools_toolbox_bootstrap_js_files': [
213 'front_end/toolbox_bootstrap/Toolbox.js', 221 'front_end/toolbox_bootstrap/Toolbox.js',
214 ], 222 ],
215 'devtools_toolbox_js_files': [ 223 'devtools_toolbox_js_files': [
216 'front_end/toolbox/responsiveDesignView.css', 224 'front_end/toolbox/responsiveDesignView.css',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'front_end/main/Tests.js', 284 'front_end/main/Tests.js',
277 'front_end/main/TestController.js', 285 'front_end/main/TestController.js',
278 ], 286 ],
279 'devtools_module_json_files': [ 287 'devtools_module_json_files': [
280 'front_end/audits/module.json', 288 'front_end/audits/module.json',
281 'front_end/bindings/module.json', 289 'front_end/bindings/module.json',
282 'front_end/common/module.json', 290 'front_end/common/module.json',
283 'front_end/components/module.json', 291 'front_end/components/module.json',
284 'front_end/console/module.json', 292 'front_end/console/module.json',
285 'front_end/devices/module.json', 293 'front_end/devices/module.json',
294 'front_end/devtools_app/module.json',
286 'front_end/documentation/module.json', 295 'front_end/documentation/module.json',
287 'front_end/elements/module.json', 296 'front_end/elements/module.json',
288 'front_end/extensions/module.json', 297 'front_end/extensions/module.json',
289 'front_end/heap_snapshot_worker/module.json', 298 'front_end/heap_snapshot_worker/module.json',
290 'front_end/host/module.json', 299 'front_end/host/module.json',
291 'front_end/layers/module.json', 300 'front_end/layers/module.json',
292 'front_end/main/module.json', 301 'front_end/main/module.json',
293 'front_end/network/module.json', 302 'front_end/network/module.json',
294 'front_end/platform/module.json', 303 'front_end/platform/module.json',
295 'front_end/profiler/module.json', 304 'front_end/profiler/module.json',
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'front_end/Images/touchCursor.png', 670 'front_end/Images/touchCursor.png',
662 'front_end/Images/touchCursor_2x.png', 671 'front_end/Images/touchCursor_2x.png',
663 'front_end/Images/transformControls.png', 672 'front_end/Images/transformControls.png',
664 'front_end/Images/transformControls_2x.png', 673 'front_end/Images/transformControls_2x.png',
665 ], 674 ],
666 'devtools_extension_api_files': [ 675 'devtools_extension_api_files': [
667 'front_end/extensions/ExtensionAPI.js', 676 'front_end/extensions/ExtensionAPI.js',
668 ], 677 ],
669 }, 678 },
670 } 679 }
OLDNEW
« no previous file with comments | « Source/devtools/devtools.gyp ('k') | Source/devtools/front_end/devtools.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698