| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'actions': [{ | 138 'actions': [{ |
| 139 'action_name': 'compute_interface_dependencies', | 139 'action_name': 'compute_interface_dependencies', |
| 140 'variables': { | 140 'variables': { |
| 141 # Write sources into a file, so that the action command line won't | 141 # Write sources into a file, so that the action command line won't |
| 142 # exceed OS limits. | 142 # exceed OS limits. |
| 143 'idl_files_list': '<|(idl_files_list.tmp <@(idl_files))', | 143 'idl_files_list': '<|(idl_files_list.tmp <@(idl_files))', |
| 144 }, | 144 }, |
| 145 'inputs': [ | 145 'inputs': [ |
| 146 'scripts/compute_dependencies.py', | 146 'scripts/compute_dependencies.py', |
| 147 '<(idl_files_list)', | 147 '<(idl_files_list)', |
| 148 '<!@(cat <(idl_files_list))', | 148 '<@(idl_files)', |
| 149 ], | 149 ], |
| 150 'outputs': [ | 150 'outputs': [ |
| 151 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', | 151 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', |
| 152 '<@(generated_global_constructors_idl_files)', | 152 '<@(generated_global_constructors_idl_files)', |
| 153 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 153 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 154 ], | 154 ], |
| 155 'msvs_cygwin_shell': 0, | 155 'msvs_cygwin_shell': 0, |
| 156 'action': [ | 156 'action': [ |
| 157 'python', | 157 'python', |
| 158 'scripts/compute_dependencies.py', | 158 'scripts/compute_dependencies.py', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 '../build/scripts/action_derivedsourcesallinone.py', | 278 '../build/scripts/action_derivedsourcesallinone.py', |
| 279 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', | 279 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', |
| 280 '--', | 280 '--', |
| 281 '<@(derived_sources_aggregate_files)', | 281 '<@(derived_sources_aggregate_files)', |
| 282 ], | 282 ], |
| 283 'message': 'Generating bindings derived sources', | 283 'message': 'Generating bindings derived sources', |
| 284 }], | 284 }], |
| 285 }, | 285 }, |
| 286 ], | 286 ], |
| 287 } | 287 } |
| OLD | NEW |