| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 'type': 'none', | 268 'type': 'none', |
| 269 'dependencies': [ | 269 'dependencies': [ |
| 270 'interfaces_info', | 270 'interfaces_info', |
| 271 ], | 271 ], |
| 272 'actions': [{ | 272 'actions': [{ |
| 273 'action_name': 'generate_event_interfaces', | 273 'action_name': 'generate_event_interfaces', |
| 274 'inputs': [ | 274 'inputs': [ |
| 275 'scripts/generate_event_interfaces.py', | 275 'scripts/generate_event_interfaces.py', |
| 276 'scripts/utilities.py', | 276 'scripts/utilities.py', |
| 277 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', | 277 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', |
| 278 # Conservative: only needs to depend on Event IDL files |
| 279 '<@(static_idl_files)', |
| 278 ], | 280 ], |
| 279 'outputs': [ | 281 'outputs': [ |
| 280 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 282 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 281 ], | 283 ], |
| 282 'action': [ | 284 'action': [ |
| 283 'python', | 285 'python', |
| 284 'scripts/generate_event_interfaces.py', | 286 'scripts/generate_event_interfaces.py', |
| 285 '--interfaces-info-file', | 287 '--interfaces-info-file', |
| 286 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', | 288 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', |
| 287 '--event-interfaces-file', | 289 '--event-interfaces-file', |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 ], | 432 ], |
| 431 'message': 'Generating aggregate generated bindings files', | 433 'message': 'Generating aggregate generated bindings files', |
| 432 }], | 434 }], |
| 433 }, | 435 }, |
| 434 ################################################################################ | 436 ################################################################################ |
| 435 { | 437 { |
| 436 'target_name': 'generated_bindings', | 438 'target_name': 'generated_bindings', |
| 437 'type': 'none', | 439 'type': 'none', |
| 438 'dependencies': [ | 440 'dependencies': [ |
| 439 'aggregate_generated_bindings', | 441 'aggregate_generated_bindings', |
| 440 'event_interfaces', | |
| 441 'individual_generated_bindings', | 442 'individual_generated_bindings', |
| 442 ], | 443 ], |
| 443 }, | 444 }, |
| 444 ################################################################################ | 445 ################################################################################ |
| 445 ], # targets | 446 ], # targets |
| 446 } | 447 } |
| OLD | NEW |