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

Unified Diff: Source/bindings/scripts/unstable/code_generator_v8.py

Issue 24156003: Revert IDL compiler build flow to Perl, rename 'deprecated' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Move to unstable Created 7 years, 3 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
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
« no previous file with comments | « Source/bindings/scripts/unstable/blink_idl_parser.py ('k') | Source/bindings/scripts/unstable/idl_compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698