| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ], | 126 ], |
| 127 'message': 'Resolving partial interfaces dependencies in all IDL files', | 127 'message': 'Resolving partial interfaces dependencies in all IDL files', |
| 128 }] | 128 }] |
| 129 }, | 129 }, |
| 130 { | 130 { |
| 131 'target_name': 'bindings_derived_sources', | 131 'target_name': 'bindings_derived_sources', |
| 132 'type': 'none', | 132 'type': 'none', |
| 133 'hard_dependency': 1, | 133 'hard_dependency': 1, |
| 134 'dependencies': [ | 134 'dependencies': [ |
| 135 'supplemental_dependencies', | 135 'supplemental_dependencies', |
| 136 '../core/core.gyp/core_derived_sources.gyp:generate_test_support_idls', | 136 '../core/derived_sources.gyp:generate_test_support_idls', |
| 137 ], | 137 ], |
| 138 'sources': [ | 138 'sources': [ |
| 139 '<@(idl_files)', | 139 '<@(idl_files)', |
| 140 '<@(webcore_test_support_idl_files)', | 140 '<@(webcore_test_support_idl_files)', |
| 141 ], | 141 ], |
| 142 'actions': [{ | 142 'actions': [{ |
| 143 'action_name': 'derived_sources_all_in_one', | 143 'action_name': 'derived_sources_all_in_one', |
| 144 'inputs': [ | 144 'inputs': [ |
| 145 '../core/core.gyp/scripts/action_derivedsourcesallinone.py', | 145 '../core/scripts/action_derivedsourcesallinone.py', |
| 146 '<(SHARED_INTERMEDIATE_DIR)/supplemental_dependency.tmp', | 146 '<(SHARED_INTERMEDIATE_DIR)/supplemental_dependency.tmp', |
| 147 ], | 147 ], |
| 148 'outputs': [ | 148 'outputs': [ |
| 149 '<@(derived_sources_aggregate_files)', | 149 '<@(derived_sources_aggregate_files)', |
| 150 ], | 150 ], |
| 151 'action': [ | 151 'action': [ |
| 152 'python', | 152 'python', |
| 153 '../core/core.gyp/scripts/action_derivedsourcesallinone.py', | 153 '../core/scripts/action_derivedsourcesallinone.py', |
| 154 '<(SHARED_INTERMEDIATE_DIR)/supplemental_dependency.tmp', | 154 '<(SHARED_INTERMEDIATE_DIR)/supplemental_dependency.tmp', |
| 155 '--', | 155 '--', |
| 156 '<@(derived_sources_aggregate_files)', | 156 '<@(derived_sources_aggregate_files)', |
| 157 ], | 157 ], |
| 158 }], | 158 }], |
| 159 'rules': [{ | 159 'rules': [{ |
| 160 'rule_name': 'binding', | 160 'rule_name': 'binding', |
| 161 'extension': 'idl', | 161 'extension': 'idl', |
| 162 'msvs_external_rule': 1, | 162 'msvs_external_rule': 1, |
| 163 'inputs': [ | 163 'inputs': [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 '<(webcore_test_support_idl_files)', | 211 '<(webcore_test_support_idl_files)', |
| 212 '<(RULE_INPUT_PATH)', | 212 '<(RULE_INPUT_PATH)', |
| 213 '<@(preprocessor)', | 213 '<@(preprocessor)', |
| 214 '<@(write_file_only_if_changed)', | 214 '<@(write_file_only_if_changed)', |
| 215 ], | 215 ], |
| 216 'message': 'Generating binding from <(RULE_INPUT_PATH)', | 216 'message': 'Generating binding from <(RULE_INPUT_PATH)', |
| 217 }], | 217 }], |
| 218 }, | 218 }, |
| 219 ], | 219 ], |
| 220 } | 220 } |
| OLD | NEW |