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

Unified Diff: Source/bindings/derived_sources.gyp

Issue 15801003: IDL parser rewrite in Python (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final (rebased). 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/bindings/scripts/blink_idl_lexer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/derived_sources.gyp
diff --git a/Source/bindings/derived_sources.gyp b/Source/bindings/derived_sources.gyp
index aed9de3bd068d281896f493fd74668f18b9aa5f6..fd84e05eaa8af37992412ef3a27ad0643705f2c9 100644
--- a/Source/bindings/derived_sources.gyp
+++ b/Source/bindings/derived_sources.gyp
@@ -51,6 +51,10 @@
'<@(deprecated_perl_idl_files)',
'<@(python_idl_files)',
],
+ 'webcore_test_support_idl_files': [
+ '<@(deprecated_perl_webcore_test_support_idl_files)',
+ '<@(python_webcore_test_support_idl_files)',
+ ],
'bindings_output_dir': '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings',
'generated_global_constructors_idl_files': [
@@ -254,9 +258,19 @@
'msvs_external_rule': 1,
'inputs': [
'scripts/idl_compiler.py',
+ '../../../ply/lex.py',
+ '../../../ply/yacc.py',
+ '../../../../tools/idl_parser/idl_lexer.py',
+ '../../../../tools/idl_parser/idl_node.py',
+ '../../../../tools/idl_parser/idl_parser.py',
abarth-chromium 2013/07/22 17:57:54 Consider using <(DEPTH) to find the top-level dire
Nils Barth (inactive) 2013/07/23 09:04:07 Thanks, that's much better! Posted CL fixing this:
+ 'scripts/blink_idl_lexer.py',
+ 'scripts/blink_idl_parser.py',
+ 'scripts/code_generator_v8.py',
+ 'scripts/idl_definitions.py',
+ 'scripts/idl_definitions_builder.py',
'scripts/idl_reader.py',
+ 'scripts/idl_validator.py',
'scripts/interface_dependency_resolver.py',
- 'scripts/code_generator_v8.py',
'scripts/IDLAttributes.txt',
# FIXME: If the dependency structure changes, we rebuild all files,
# since we're not computing dependencies file-by-file in the build.
@@ -300,7 +314,7 @@
'--interface-dependencies-file',
'<(SHARED_INTERMEDIATE_DIR)/InterfaceDependencies.txt',
'--additional-idl-files',
- '<(python_webcore_test_support_idl_files)',
+ '<(webcore_test_support_idl_files)',
'<@(write_file_only_if_changed)',
'<(RULE_INPUT_PATH)',
],
« no previous file with comments | « no previous file | Source/bindings/scripts/blink_idl_lexer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698