OLD | NEW |
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 }], | 184 }], |
185 }], | 185 }], |
186 ], | 186 ], |
187 }, | 187 }, |
188 { | 188 { |
189 'target_name': 'frontend_protocol_sources', | 189 'target_name': 'frontend_protocol_sources', |
190 'type': 'none', | 190 'type': 'none', |
191 'actions': [ | 191 'actions': [ |
192 { | 192 { |
193 'action_name': 'generateInspectorProtocolFrontendSources', | 193 'action_name': 'generateInspectorProtocolFrontendSources', |
| 194 'dependencies': [ |
| 195 '../core/inspector:protocol_version' |
| 196 ], |
194 'inputs': [ | 197 'inputs': [ |
195 # The python script in action below. | 198 # The python script in action below. |
196 'scripts/CodeGeneratorFrontend.py', | 199 'scripts/CodeGeneratorFrontend.py', |
197 # Input file for the script. | 200 # Input file for the script. |
198 'protocol.json', | 201 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol/inspec
tor.json', |
199 ], | 202 ], |
200 'outputs': [ | 203 'outputs': [ |
201 '<(PRODUCT_DIR)/resources/inspector/InspectorBackendCommands.js'
, | 204 '<(PRODUCT_DIR)/resources/inspector/InspectorBackendCommands.js'
, |
202 ], | 205 ], |
203 'action': [ | 206 'action': [ |
204 'python', | 207 'python', |
205 'scripts/CodeGeneratorFrontend.py', | 208 'scripts/CodeGeneratorFrontend.py', |
206 'protocol.json', | 209 '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol/inspec
tor.json', |
207 '--output_js_dir', '<(PRODUCT_DIR)/resources/inspector/', | 210 '--output_js_dir', '<(PRODUCT_DIR)/resources/inspector/', |
208 ], | 211 ], |
209 'message': 'Generating Inspector protocol frontend sources from pr
otocol.json', | 212 'message': 'Generating Inspector protocol frontend sources from js
on definitions.', |
210 }, | 213 }, |
211 ] | 214 ] |
212 }, | 215 }, |
213 { | 216 { |
214 'target_name': 'supported_css_properties', | 217 'target_name': 'supported_css_properties', |
215 'type': 'none', | 218 'type': 'none', |
216 'actions': [ | 219 'actions': [ |
217 { | 220 { |
218 'action_name': 'generateSupportedCSSProperties', | 221 'action_name': 'generateSupportedCSSProperties', |
219 'inputs': [ | 222 'inputs': [ |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 '<@(devtools_cm_js_files)', | 334 '<@(devtools_cm_js_files)', |
332 '<@(devtools_cm_css_files)', | 335 '<@(devtools_cm_css_files)', |
333 ], | 336 ], |
334 }, | 337 }, |
335 ] | 338 ] |
336 }] | 339 }] |
337 ] | 340 ] |
338 }, | 341 }, |
339 ] | 342 ] |
340 } | 343 } |
OLD | NEW |