| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [ |
| 164 'scripts/generate-bindings.pl', | 164 'scripts/generate-bindings.pl', |
| 165 'scripts/CodeGeneratorV8.pm', | 165 'scripts/CodeGeneratorV8.pm', |
| 166 'scripts/IDLParser.pm', | 166 'scripts/IDLParser.pm', |
| 167 'scripts/SemanticAnalyzer.pm', |
| 167 'scripts/IDLAttributes.txt', | 168 'scripts/IDLAttributes.txt', |
| 168 '../core/scripts/preprocessor.pm', | 169 '../core/scripts/preprocessor.pm', |
| 169 '<!@pymod_do_main(supplemental_idl_files <@(idl_files))', | 170 '<!@pymod_do_main(supplemental_idl_files <@(idl_files))', |
| 170 '<(SHARED_INTERMEDIATE_DIR)/DOMWindowConstructors.idl', | 171 '<(SHARED_INTERMEDIATE_DIR)/DOMWindowConstructors.idl', |
| 171 ], | 172 ], |
| 172 'outputs': [ | 173 'outputs': [ |
| 173 # FIXME: The .cpp file should be in webkit/bindings once | 174 # FIXME: The .cpp file should be in webkit/bindings once |
| 174 # we coax GYP into supporting it (see 'action' below). | 175 # we coax GYP into supporting it (see 'action' below). |
| 175 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8<(RULE_INPUT_ROOT).cpp'
, | 176 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8<(RULE_INPUT_ROOT).cpp'
, |
| 176 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8<(RULE_INPUT_ROOT).h', | 177 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8<(RULE_INPUT_ROOT).h', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 '<(webcore_test_support_idl_files)', | 212 '<(webcore_test_support_idl_files)', |
| 212 '<(RULE_INPUT_PATH)', | 213 '<(RULE_INPUT_PATH)', |
| 213 '<@(preprocessor)', | 214 '<@(preprocessor)', |
| 214 '<@(write_file_only_if_changed)', | 215 '<@(write_file_only_if_changed)', |
| 215 ], | 216 ], |
| 216 'message': 'Generating binding from <(RULE_INPUT_PATH)', | 217 'message': 'Generating binding from <(RULE_INPUT_PATH)', |
| 217 }], | 218 }], |
| 218 }, | 219 }, |
| 219 ], | 220 ], |
| 220 } | 221 } |
| OLD | NEW |