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

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

Issue 19607011: Generate binding code for VoidCallback.idl with code generator in python (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 5 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 '<(DEPTH)/tools/idl_parser/idl_parser.py', 265 '<(DEPTH)/tools/idl_parser/idl_parser.py',
266 'scripts/blink_idl_lexer.py', 266 'scripts/blink_idl_lexer.py',
267 'scripts/blink_idl_parser.py', 267 'scripts/blink_idl_parser.py',
268 'scripts/code_generator_v8.py', 268 'scripts/code_generator_v8.py',
269 'scripts/idl_definitions.py', 269 'scripts/idl_definitions.py',
270 'scripts/idl_definitions_builder.py', 270 'scripts/idl_definitions_builder.py',
271 'scripts/idl_reader.py', 271 'scripts/idl_reader.py',
272 'scripts/idl_validator.py', 272 'scripts/idl_validator.py',
273 'scripts/interface_dependency_resolver.py', 273 'scripts/interface_dependency_resolver.py',
274 'scripts/IDLAttributes.txt', 274 'scripts/IDLAttributes.txt',
275 'templates/callback.h',
276 'templates/callback.cpp',
Nils Barth (inactive) 2013/07/24 11:41:20 How about using a variable for this (declared in t
kojih 2013/07/25 09:08:37 Thanks, done.
275 # FIXME: If the dependency structure changes, we rebuild all files, 277 # FIXME: If the dependency structure changes, we rebuild all files,
276 # since we're not computing dependencies file-by-file in the build. 278 # since we're not computing dependencies file-by-file in the build.
277 '<(SHARED_INTERMEDIATE_DIR)/InterfaceDependencies.txt', 279 '<(SHARED_INTERMEDIATE_DIR)/InterfaceDependencies.txt',
278 # FIXME: Similarly, if any partial interface changes, rebuild 280 # FIXME: Similarly, if any partial interface changes, rebuild
279 # everything, since every IDL potentially depends on them, because 281 # everything, since every IDL potentially depends on them, because
280 # we're not computing dependencies file-by-file. 282 # we're not computing dependencies file-by-file.
281 '<!@pymod_do_main(list_idl_files_with_partial_interface <@(perl_and_py thon_idl_files))', 283 '<!@pymod_do_main(list_idl_files_with_partial_interface <@(perl_and_py thon_idl_files))',
282 # Generated IDLs are all partial interfaces, hence everything 284 # Generated IDLs are all partial interfaces, hence everything
283 # potentially depends on them. 285 # potentially depends on them.
284 '<@(generated_global_constructors_idl_files)', 286 '<@(generated_global_constructors_idl_files)',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 '../core/scripts/action_derivedsourcesallinone.py', 345 '../core/scripts/action_derivedsourcesallinone.py',
344 '<(SHARED_INTERMEDIATE_DIR)/InterfaceDependencies.txt', 346 '<(SHARED_INTERMEDIATE_DIR)/InterfaceDependencies.txt',
345 '--', 347 '--',
346 '<@(derived_sources_aggregate_files)', 348 '<@(derived_sources_aggregate_files)',
347 ], 349 ],
348 'message': 'Generating bindings derived sources', 350 'message': 'Generating bindings derived sources',
349 }], 351 }],
350 }, 352 },
351 ], 353 ],
352 } 354 }
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/scripts/code_generator_v8.py » ('j') | Source/bindings/scripts/code_generator_v8.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698