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

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

Issue 2109243003: Introduce --remote-debugging-frontend switch for custom remote debugging front-end (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: support absolute path instead of HTTP endpoint Created 4 years, 5 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
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 'relative_path_dirs': [ 155 'relative_path_dirs': [
156 'front_end', 156 'front_end',
157 '<(PRODUCT_DIR)/resources/inspector', 157 '<(PRODUCT_DIR)/resources/inspector',
158 ], 158 ],
159 'static_files': [ 159 'static_files': [
160 '<@(all_devtools_files)', 160 '<@(all_devtools_files)',
161 'front_end/Runtime.js', 161 'front_end/Runtime.js',
162 ], 162 ],
163 'devtools_static_files_list': '<|(devtools_static_grd_fi les.tmp <@(_static_files))', 163 'devtools_static_files_list': '<|(devtools_static_grd_fi les.tmp <@(_static_files))',
164 'generated_files': [ 164 'generated_files': [
165 '<(PRODUCT_DIR)/resources/inspector/InspectorBackend Commands.js', 165 '<(PRODUCT_DIR)/resources/inspector/gen/InspectorBac kendCommands.js',
166 '<(PRODUCT_DIR)/resources/inspector/SupportedCSSProp erties.js', 166 '<(PRODUCT_DIR)/resources/inspector/gen/SupportedCSS Properties.js',
167 '<(PRODUCT_DIR)/resources/inspector/inspector.html', 167 '<(PRODUCT_DIR)/resources/inspector/inspector.html',
168 '<(PRODUCT_DIR)/resources/inspector/toolbox.html', 168 '<(PRODUCT_DIR)/resources/inspector/toolbox.html',
169 ], 169 ],
170 'inputs': [ 170 'inputs': [
171 '<@(_script_name)', 171 '<@(_script_name)',
172 '<@(_static_files)', 172 '<@(_static_files)',
173 '<@(devtools_embedder_scripts)', 173 '<@(devtools_embedder_scripts)',
174 '<@(_generated_files)', 174 '<@(_generated_files)',
175 '<@(devtools_image_files)', 175 '<@(devtools_image_files)',
176 '<(_devtools_static_files_list)', 176 '<(_devtools_static_files_list)',
(...skipping 17 matching lines...) Expand all
194 'actions': [ 194 'actions': [
195 { 195 {
196 'action_name': 'generateInspectorProtocolFrontendSources', 196 'action_name': 'generateInspectorProtocolFrontendSources',
197 'inputs': [ 197 'inputs': [
198 # The python script in action below. 198 # The python script in action below.
199 'scripts/CodeGeneratorFrontend.py', 199 'scripts/CodeGeneratorFrontend.py',
200 # Input file for the script. 200 # Input file for the script.
201 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol.json', 201 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol.json',
202 ], 202 ],
203 'outputs': [ 203 'outputs': [
204 '<(PRODUCT_DIR)/resources/inspector/InspectorBackendCommands.js' , 204 '<(PRODUCT_DIR)/resources/inspector/gen/InspectorBackendCommands .js',
205 ], 205 ],
206 'action': [ 206 'action': [
207 'python', 207 'python',
208 'scripts/CodeGeneratorFrontend.py', 208 'scripts/CodeGeneratorFrontend.py',
209 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol.json', 209 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol.json',
210 '--output_js_dir', '<(PRODUCT_DIR)/resources/inspector/', 210 '--output_js_dir', '<(PRODUCT_DIR)/resources/inspector/',
211 ], 211 ],
212 'message': 'Generating Inspector protocol frontend sources from js on definitions.', 212 'message': 'Generating Inspector protocol frontend sources from js on definitions.',
213 }, 213 },
214 ] 214 ]
215 }, 215 },
216 { 216 {
217 'target_name': 'supported_css_properties', 217 'target_name': 'supported_css_properties',
218 'type': 'none', 218 'type': 'none',
219 'actions': [ 219 'actions': [
220 { 220 {
221 'action_name': 'generateSupportedCSSProperties', 221 'action_name': 'generateSupportedCSSProperties',
222 'inputs': [ 222 'inputs': [
223 # The python script in action below. 223 # The python script in action below.
224 'scripts/generate_supported_css.py', 224 'scripts/generate_supported_css.py',
225 # Input files for the script. 225 # Input files for the script.
226 '../core/css/CSSProperties.in', 226 '../core/css/CSSProperties.in',
227 ], 227 ],
228 'outputs': [ 228 'outputs': [
229 '<(PRODUCT_DIR)/resources/inspector/SupportedCSSProperties.js', 229 '<(PRODUCT_DIR)/resources/inspector/gen/SupportedCSSProperties.j s',
230 ], 230 ],
231 'action': [ 231 'action': [
232 'python', 232 'python',
233 '<@(_inputs)', 233 '<@(_inputs)',
234 '<@(_outputs)', 234 '<@(_outputs)',
235 ], 235 ],
236 'message': 'Generating supported CSS properties for front end', 236 'message': 'Generating supported CSS properties for front end',
237 }, 237 },
238 ] 238 ]
239 }, 239 },
(...skipping 13 matching lines...) Expand all
253 'helper_scripts': [ 253 'helper_scripts': [
254 'scripts/modular_build.py', 254 'scripts/modular_build.py',
255 'scripts/concatenate_application_code.py', 255 'scripts/concatenate_application_code.py',
256 ], 256 ],
257 'inputs': [ 257 'inputs': [
258 '<@(_script_name)', 258 '<@(_script_name)',
259 '<@(_helper_scripts)', 259 '<@(_helper_scripts)',
260 '<@(all_devtools_files)', 260 '<@(all_devtools_files)',
261 'front_end/inspector.html', 261 'front_end/inspector.html',
262 'front_end/toolbox.html', 262 'front_end/toolbox.html',
263 '<(_output_path)/InspectorBackendCommands.js', 263 '<(_output_path)/gen/InspectorBackendCommands.js',
264 '<(_output_path)/SupportedCSSProperties.js', 264 '<(_output_path)/gen/SupportedCSSProperties.js',
265 ], 265 ],
266 'action': ['python', '<@(_script_name)', 'inspector', 'toolbox', 'formatter_worker', 'heap_snapshot_worker', 'temp_storage_shared_worker', '--in put_path', 'front_end', '--output_path', '<@(_output_path)', '--debug', '<@(debu g_devtools)'], 266 'action': ['python', '<@(_script_name)', 'inspector', 'toolbox', 'formatter_worker', 'heap_snapshot_worker', 'temp_storage_shared_worker', '--in put_path', 'front_end', '--output_path', '<@(_output_path)', '--debug', '<@(debu g_devtools)'],
267 'conditions': [ 267 'conditions': [
268 ['debug_devtools==0', { # Release 268 ['debug_devtools==0', { # Release
269 'outputs': [ 269 'outputs': [
270 '<(_output_path)/inspector.html', 270 '<(_output_path)/inspector.html',
271 '<(_output_path)/inspector.js', 271 '<(_output_path)/inspector.js',
272 '<(_output_path)/toolbox.html', 272 '<(_output_path)/toolbox.html',
273 '<(_output_path)/toolbox.js', 273 '<(_output_path)/toolbox.js',
274 '<(_output_path)/formatter_worker.js', 274 '<(_output_path)/formatter_worker.js',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 '<@(devtools_cm_js_files)', 334 '<@(devtools_cm_js_files)',
335 '<@(devtools_cm_css_files)', 335 '<@(devtools_cm_css_files)',
336 ], 336 ],
337 }, 337 },
338 ] 338 ]
339 }] 339 }]
340 ] 340 ]
341 }, 341 },
342 ] 342 ]
343 } 343 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/BUILD.gn ('k') | third_party/WebKit/Source/devtools/devtools.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698