| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'action_name': 'compute_interface_dependencies', | 146 'action_name': 'compute_interface_dependencies', |
| 147 'variables': { | 147 'variables': { |
| 148 # Write sources into a file, so that the action command line won't | 148 # Write sources into a file, so that the action command line won't |
| 149 # exceed OS limits. | 149 # exceed OS limits. |
| 150 'main_idl_files_list': '<|(main_idl_files_list.tmp <@(main_idl_files))', | 150 'main_idl_files_list': '<|(main_idl_files_list.tmp <@(main_idl_files))', |
| 151 'support_idl_files_list': '<|(support_idl_files_list.tmp <@(support_idl_
files))', | 151 'support_idl_files_list': '<|(support_idl_files_list.tmp <@(support_idl_
files))', |
| 152 }, | 152 }, |
| 153 'inputs': [ | 153 'inputs': [ |
| 154 'scripts/compute_dependencies.py', | 154 'scripts/compute_dependencies.py', |
| 155 '<(main_idl_files_list)', | 155 '<(main_idl_files_list)', |
| 156 '<!@(cat <(main_idl_files_list))', | 156 '<@(main_idl_files)', |
| 157 '<(support_idl_files_list)', | 157 '<(support_idl_files_list)', |
| 158 '<!@(cat <(support_idl_files_list))', | 158 '<@(support_idl_files)', |
| 159 ], | 159 ], |
| 160 'outputs': [ | 160 'outputs': [ |
| 161 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', | 161 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', |
| 162 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', | 162 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', |
| 163 '<@(generated_global_constructors_idl_files)', | 163 '<@(generated_global_constructors_idl_files)', |
| 164 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 164 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 165 ], | 165 ], |
| 166 'msvs_cygwin_shell': 0, | 166 'msvs_cygwin_shell': 0, |
| 167 'action': [ | 167 'action': [ |
| 168 'python', | 168 'python', |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 '../build/scripts/action_derivedsourcesallinone.py', | 293 '../build/scripts/action_derivedsourcesallinone.py', |
| 294 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', | 294 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', |
| 295 '--', | 295 '--', |
| 296 '<@(derived_sources_aggregate_files)', | 296 '<@(derived_sources_aggregate_files)', |
| 297 ], | 297 ], |
| 298 'message': 'Generating bindings derived sources', | 298 'message': 'Generating bindings derived sources', |
| 299 }], | 299 }], |
| 300 }, | 300 }, |
| 301 ], | 301 ], |
| 302 } | 302 } |
| OLD | NEW |