 Chromium Code Reviews
 Chromium Code Reviews Issue 24156003:
  Revert IDL compiler build flow to Perl, rename 'deprecated'  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk
    
  
    Issue 24156003:
  Revert IDL compiler build flow to Perl, rename 'deprecated'  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk| Index: Source/bindings/scripts/unstable/code_generator_v8.py | 
| diff --git a/Source/bindings/scripts/code_generator_v8.py b/Source/bindings/scripts/unstable/code_generator_v8.py | 
| similarity index 93% | 
| rename from Source/bindings/scripts/code_generator_v8.py | 
| rename to Source/bindings/scripts/unstable/code_generator_v8.py | 
| index 8be92646066a546aa9f061bafb8ed431a49d3cd1..b7b3a54af1a1189857cd6fdd052d93b7efb0da63 100644 | 
| --- a/Source/bindings/scripts/code_generator_v8.py | 
| +++ b/Source/bindings/scripts/unstable/code_generator_v8.py | 
| @@ -28,6 +28,12 @@ | 
| """Generate Blink V8 bindings (.h and .cpp files). | 
| +UNSTABLE: Not currently used in build. | 
| 
haraken
2013/09/18 09:45:36
UNSTABLE => FIXME ?
 
Nils Barth (inactive)
2013/09/18 09:53:30
Done!
 | 
| +This is a rewrite of the Perl IDL compiler in Python, but is not complete. | 
| +Once it is complete, we will switch all IDL files over to Python at once. | 
| +Until then, please work on the Perl IDL compiler. | 
| +For details, see bug http://crbug.com/239771 | 
| + | 
| Input: An object of class IdlDefinitions, containing an IDL interface X | 
| Output: V8X.h and V8X.cpp | 
| """ | 
| @@ -38,11 +44,11 @@ import sys | 
| # jinja2 is in chromium's third_party directory. | 
| module_path, module_name = os.path.split(__file__) | 
| -third_party = os.path.join(module_path, os.pardir, os.pardir, os.pardir, os.pardir) | 
| +third_party = os.path.join(module_path, os.pardir, os.pardir, os.pardir, os.pardir, os.pardir) | 
| sys.path.append(third_party) | 
| import jinja2 | 
| -templates_dir = os.path.join(module_path, os.pardir, 'templates') | 
| +templates_dir = os.path.join(module_path, os.pardir, os.pardir, 'templates') | 
| import v8_callback_interface | 
| import v8_interface |