| 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)', | |
| 280 ], | 278 ], |
| 281 'outputs': [ | 279 'outputs': [ |
| 282 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 280 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 283 ], | 281 ], |
| 284 'action': [ | 282 'action': [ |
| 285 'python', | 283 'python', |
| 286 'scripts/generate_event_interfaces.py', | 284 'scripts/generate_event_interfaces.py', |
| 287 '--interfaces-info-file', | 285 '--interfaces-info-file', |
| 288 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', | 286 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', |
| 289 '--event-interfaces-file', | 287 '--event-interfaces-file', |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 ], | 430 ], |
| 433 'message': 'Generating aggregate generated bindings files', | 431 'message': 'Generating aggregate generated bindings files', |
| 434 }], | 432 }], |
| 435 }, | 433 }, |
| 436 ################################################################################ | 434 ################################################################################ |
| 437 { | 435 { |
| 438 'target_name': 'generated_bindings', | 436 'target_name': 'generated_bindings', |
| 439 'type': 'none', | 437 'type': 'none', |
| 440 'dependencies': [ | 438 'dependencies': [ |
| 441 'aggregate_generated_bindings', | 439 'aggregate_generated_bindings', |
| 440 'event_interfaces', |
| 442 'individual_generated_bindings', | 441 'individual_generated_bindings', |
| 443 ], | 442 ], |
| 444 }, | 443 }, |
| 445 ################################################################################ | 444 ################################################################################ |
| 446 ], # targets | 445 ], # targets |
| 447 } | 446 } |
| OLD | NEW |