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

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

Issue 1511073002: DevTools: [SASS] introduce sass module, implement SCSS AST-builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: introduce ASTDocument Created 5 years 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
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 25 matching lines...) Expand all
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_emulation_js_files)', 42 '<@(devtools_emulation_js_files)',
43 '<@(devtools_host_js_files)', 43 '<@(devtools_host_js_files)',
44 '<@(devtools_main_js_files)', 44 '<@(devtools_main_js_files)',
45 '<@(devtools_platform_js_files)', 45 '<@(devtools_platform_js_files)',
46 '<@(devtools_sass_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_ui_js_files)', 49 '<@(devtools_ui_js_files)',
49 '<@(devtools_workspace_js_files)', 50 '<@(devtools_workspace_js_files)',
50 '<@(devtools_core_css_files)', 51 '<@(devtools_core_css_files)',
51 ], 52 ],
52 'devtools_compatibility_scripts': [ 53 'devtools_compatibility_scripts': [
53 'front_end/devtools.js', 54 'front_end/devtools.js',
54 ], 55 ],
55 'devtools_core_base_files': [ 56 'devtools_core_base_files': [
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'front_end/components/EventListenersView.js', 120 'front_end/components/EventListenersView.js',
120 'front_end/components/Reload.js', 121 'front_end/components/Reload.js',
121 ], 122 ],
122 'devtools_host_js_files': [ 123 'devtools_host_js_files': [
123 'front_end/host/InspectorFrontendHostAPI.js', 124 'front_end/host/InspectorFrontendHostAPI.js',
124 'front_end/host/InspectorFrontendHost.js', 125 'front_end/host/InspectorFrontendHost.js',
125 'front_end/host/Platform.js', 126 'front_end/host/Platform.js',
126 'front_end/host/ResourceLoader.js', 127 'front_end/host/ResourceLoader.js',
127 'front_end/host/UserMetrics.js', 128 'front_end/host/UserMetrics.js',
128 ], 129 ],
130 'devtools_sass_js_files': [
131 'front_end/sass/SASSSupport.js',
132 ],
129 'devtools_screencast_js_files': [ 133 'devtools_screencast_js_files': [
130 'front_end/screencast/screencastView.css', 134 'front_end/screencast/screencastView.css',
131 'front_end/screencast/ScreencastApp.js', 135 'front_end/screencast/ScreencastApp.js',
132 'front_end/screencast/ScreencastView.js', 136 'front_end/screencast/ScreencastView.js',
133 ], 137 ],
134 'devtools_sdk_js_files': [ 138 'devtools_sdk_js_files': [
135 'front_end/sdk/ApplicationCacheModel.js', 139 'front_end/sdk/ApplicationCacheModel.js',
136 'front_end/sdk/ConsoleModel.js', 140 'front_end/sdk/ConsoleModel.js',
137 'front_end/sdk/ContentProviders.js', 141 'front_end/sdk/ContentProviders.js',
138 'front_end/sdk/CookieParser.js', 142 'front_end/sdk/CookieParser.js',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 'front_end/extensions/module.json', 326 'front_end/extensions/module.json',
323 'front_end/heap_snapshot_worker/module.json', 327 'front_end/heap_snapshot_worker/module.json',
324 'front_end/host/module.json', 328 'front_end/host/module.json',
325 'front_end/layers/module.json', 329 'front_end/layers/module.json',
326 'front_end/main/module.json', 330 'front_end/main/module.json',
327 'front_end/network/module.json', 331 'front_end/network/module.json',
328 'front_end/platform/module.json', 332 'front_end/platform/module.json',
329 'front_end/profiler/module.json', 333 'front_end/profiler/module.json',
330 'front_end/promises/module.json', 334 'front_end/promises/module.json',
331 'front_end/resources/module.json', 335 'front_end/resources/module.json',
336 'front_end/sass/module.json',
332 'front_end/security/module.json', 337 'front_end/security/module.json',
333 'front_end/screencast/module.json', 338 'front_end/screencast/module.json',
334 'front_end/script_formatter_worker/module.json', 339 'front_end/script_formatter_worker/module.json',
335 'front_end/sdk/module.json', 340 'front_end/sdk/module.json',
336 'front_end/settings/module.json', 341 'front_end/settings/module.json',
337 'front_end/source_frame/module.json', 342 'front_end/source_frame/module.json',
338 'front_end/sources/module.json', 343 'front_end/sources/module.json',
339 'front_end/snippets/module.json', 344 'front_end/snippets/module.json',
340 'front_end/temp_storage_shared_worker/module.json', 345 'front_end/temp_storage_shared_worker/module.json',
341 'front_end/timeline/module.json', 346 'front_end/timeline/module.json',
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 'front_end/Images/toolbarItemSelected.png', 841 'front_end/Images/toolbarItemSelected.png',
837 'front_end/Images/touchCursor.png', 842 'front_end/Images/touchCursor.png',
838 'front_end/Images/touchCursor_2x.png', 843 'front_end/Images/touchCursor_2x.png',
839 'front_end/Images/updateServiceWorker.svg', 844 'front_end/Images/updateServiceWorker.svg',
840 ], 845 ],
841 'devtools_extension_api_files': [ 846 'devtools_extension_api_files': [
842 'front_end/extensions/ExtensionAPI.js', 847 'front_end/extensions/ExtensionAPI.js',
843 ], 848 ],
844 }, 849 },
845 } 850 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698