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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 '<!@pymod_do_main(supplemental_idl_files <@(idl_files))', | 164 '<!@pymod_do_main(supplemental_idl_files <@(idl_files))', |
165 ], | 165 ], |
166 'outputs': [ | 166 'outputs': [ |
167 # FIXME: The .cpp file should be in webkit/bindings once | 167 # FIXME: The .cpp file should be in webkit/bindings once |
168 # we coax GYP into supporting it (see 'action' below). | 168 # we coax GYP into supporting it (see 'action' below). |
169 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8<(RULE_INPUT_ROOT).cpp'
, | 169 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8<(RULE_INPUT_ROOT).cpp'
, |
170 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8<(RULE_INPUT_ROOT).h', | 170 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8<(RULE_INPUT_ROOT).h', |
171 ], | 171 ], |
172 'variables': { | 172 'variables': { |
173 'generator_include_dirs': [ | 173 'generator_include_dirs': [ |
| 174 # XXX: Make HFileForInterface() look in the dir of the current idl f
ile, then most of the new ones can be pruned again |
| 175 '--include', '../modules/battery', |
| 176 '--include', '../modules/donottrack', |
| 177 '--include', '../modules/geolocation', |
174 '--include', '../modules/filesystem', | 178 '--include', '../modules/filesystem', |
| 179 '--include', '../modules/gamepad', |
175 '--include', '../modules/indexeddb', | 180 '--include', '../modules/indexeddb', |
| 181 '--include', '../modules/inputmethod', |
176 '--include', '../modules/mediasource', | 182 '--include', '../modules/mediasource', |
177 '--include', '../modules/mediastream', | 183 '--include', '../modules/mediastream', |
178 '--include', '../modules/navigatorcontentutils', | 184 '--include', '../modules/navigatorcontentutils', |
179 '--include', '../modules/notifications', | 185 '--include', '../modules/notifications', |
| 186 '--include', '../modules/quota', |
| 187 '--include', '../modules/speech', |
180 '--include', '../modules/webaudio', | 188 '--include', '../modules/webaudio', |
181 '--include', '../modules/webdatabase', | 189 '--include', '../modules/webdatabase', |
182 '--include', '../modules/webmidi', | 190 '--include', '../modules/webmidi', |
| 191 '--include', '../modules/websockets', |
183 '--include', '../core/css', | 192 '--include', '../core/css', |
184 '--include', '../core/dom', | 193 '--include', '../core/dom', |
185 '--include', '../core/fileapi', | 194 '--include', '../core/fileapi', |
186 '--include', '../core/html', | 195 '--include', '../core/html', |
| 196 '--include', '../core/inspector', |
| 197 '--include', '../core/loader/appcache', |
187 '--include', '../core/page', | 198 '--include', '../core/page', |
188 '--include', '../core/plugins', | 199 '--include', '../core/plugins', |
189 '--include', '../core/storage', | 200 '--include', '../core/storage', |
190 '--include', '../core/svg', | 201 '--include', '../core/svg', |
191 '--include', '../core/testing', | 202 '--include', '../core/testing', |
192 '--include', '../core/workers', | 203 '--include', '../core/workers', |
193 '--include', '../core/xml', | 204 '--include', '../core/xml', |
194 '--include', '<(SHARED_INTERMEDIATE_DIR)/webkit', | 205 '--include', '<(SHARED_INTERMEDIATE_DIR)/webkit', |
195 ], | 206 ], |
196 }, | 207 }, |
(...skipping 23 matching lines...) Expand all Loading... |
220 '--additionalIdlFiles', | 231 '--additionalIdlFiles', |
221 '<(webcore_test_support_idl_files)', | 232 '<(webcore_test_support_idl_files)', |
222 '<(RULE_INPUT_PATH)', | 233 '<(RULE_INPUT_PATH)', |
223 '<@(preprocessor)', | 234 '<@(preprocessor)', |
224 ], | 235 ], |
225 'message': 'Generating binding from <(RULE_INPUT_PATH)', | 236 'message': 'Generating binding from <(RULE_INPUT_PATH)', |
226 }], | 237 }], |
227 }, | 238 }, |
228 ], | 239 ], |
229 } | 240 } |
OLD | NEW |