| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'idl_files_list': '<|(idl_files_list.tmp <@(static_idl_files))', | 228 'idl_files_list': '<|(idl_files_list.tmp <@(static_idl_files))', |
| 229 }, | 229 }, |
| 230 'inputs': [ | 230 'inputs': [ |
| 231 'scripts/compute_interfaces_info.py', | 231 'scripts/compute_interfaces_info.py', |
| 232 'scripts/utilities.py', | 232 'scripts/utilities.py', |
| 233 '<(idl_files_list)', | 233 '<(idl_files_list)', |
| 234 '<@(static_idl_files)', | 234 '<@(static_idl_files)', |
| 235 '<@(generated_idl_files)', | 235 '<@(generated_idl_files)', |
| 236 ], | 236 ], |
| 237 'outputs': [ | 237 'outputs': [ |
| 238 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', | |
| 239 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', | 238 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', |
| 240 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 239 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 241 ], | 240 ], |
| 242 'action': [ | 241 'action': [ |
| 243 'python', | 242 'python', |
| 244 'scripts/compute_interfaces_info.py', | 243 'scripts/compute_interfaces_info.py', |
| 245 '--idl-files-list', | 244 '--idl-files-list', |
| 246 '<(idl_files_list)', | 245 '<(idl_files_list)', |
| 247 '--interface-dependencies-file', | |
| 248 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', | |
| 249 '--interfaces-info-file', | 246 '--interfaces-info-file', |
| 250 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', | 247 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfacesInfo.pickle', |
| 251 '--event-names-file', | 248 '--event-names-file', |
| 252 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 249 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 253 '<@(write_file_only_if_changed)', | 250 '<@(write_file_only_if_changed)', |
| 254 '--', | 251 '--', |
| 255 '<@(generated_idl_files)', | 252 '<@(generated_idl_files)', |
| 256 ], | 253 ], |
| 257 'message': 'Computing global information about IDL files, and generating l
ist of Event interfaces', | 254 'message': 'Computing global information about IDL files, and generating l
ist of Event interfaces', |
| 258 }] | 255 }] |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 { | 366 { |
| 370 'target_name': 'generated_bindings', | 367 'target_name': 'generated_bindings', |
| 371 'type': 'none', | 368 'type': 'none', |
| 372 'dependencies': [ | 369 'dependencies': [ |
| 373 'aggregate_generated_bindings', | 370 'aggregate_generated_bindings', |
| 374 'individual_generated_bindings', | 371 'individual_generated_bindings', |
| 375 ], | 372 ], |
| 376 }, | 373 }, |
| 377 ], | 374 ], |
| 378 } | 375 } |
| OLD | NEW |