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