Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: Source/bindings/derived_sources.gyp

Issue 14384004: Get rid of [Callback] extended attribute for parameters in IDL files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 '../core/scripts/preprocessor.pm', 163 '../core/scripts/preprocessor.pm',
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 # IDL include paths. The generator will search recursively for IDL
174 # files under these locations.
173 'generator_include_dirs': [ 175 'generator_include_dirs': [
174 '--include', '../modules/filesystem', 176 '--include', '../modules',
175 '--include', '../modules/indexeddb', 177 '--include', '../core',
do-not-use 2013/04/26 16:48:16 The generator will look for IDL files recursively
176 '--include', '../modules/mediasource',
177 '--include', '../modules/mediastream',
178 '--include', '../modules/navigatorcontentutils',
179 '--include', '../modules/notifications',
180 '--include', '../modules/webaudio',
181 '--include', '../modules/webdatabase',
182 '--include', '../modules/webmidi',
183 '--include', '../core/css',
184 '--include', '../core/dom',
185 '--include', '../core/fileapi',
186 '--include', '../core/html',
187 '--include', '../core/page',
188 '--include', '../core/plugins',
189 '--include', '../core/storage',
190 '--include', '../core/svg',
191 '--include', '../core/testing',
192 '--include', '../core/workers',
193 '--include', '../core/xml',
194 '--include', '<(SHARED_INTERMEDIATE_DIR)/webkit', 178 '--include', '<(SHARED_INTERMEDIATE_DIR)/webkit',
195 ], 179 ],
196 }, 180 },
197 'msvs_cygwin_shell': 0, 181 'msvs_cygwin_shell': 0,
198 # FIXME: Note that we put the .cpp files in webcore/bindings 182 # FIXME: Note that we put the .cpp files in webcore/bindings
199 # but the .h files in webkit/bindings. This is to work around 183 # but the .h files in webkit/bindings. This is to work around
200 # the unfortunate fact that GYP strips duplicate arguments 184 # the unfortunate fact that GYP strips duplicate arguments
201 # from lists. When we have a better GYP way to suppress that 185 # from lists. When we have a better GYP way to suppress that
202 # behavior, change the output location. 186 # behavior, change the output location.
203 'action': [ 187 'action': [
(...skipping 16 matching lines...) Expand all
220 '--additionalIdlFiles', 204 '--additionalIdlFiles',
221 '<(webcore_test_support_idl_files)', 205 '<(webcore_test_support_idl_files)',
222 '<(RULE_INPUT_PATH)', 206 '<(RULE_INPUT_PATH)',
223 '<@(preprocessor)', 207 '<@(preprocessor)',
224 ], 208 ],
225 'message': 'Generating binding from <(RULE_INPUT_PATH)', 209 'message': 'Generating binding from <(RULE_INPUT_PATH)',
226 }], 210 }],
227 }, 211 },
228 ], 212 ],
229 } 213 }
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/scripts/CodeGenerator.pm » ('j') | Source/bindings/scripts/CodeGenerator.pm » ('J')

Powered by Google App Engine
This is Rietveld 408576698