Index: Tools/Scripts/webkitpy/bindings/main.py |
diff --git a/Tools/Scripts/webkitpy/bindings/main.py b/Tools/Scripts/webkitpy/bindings/main.py |
index 04e11e52affbb19d1de8d725e392d53819c298d1..c7efc19fc878ed9998882a51eae2e4c347ff555f 100644 |
--- a/Tools/Scripts/webkitpy/bindings/main.py |
+++ b/Tools/Scripts/webkitpy/bindings/main.py |
@@ -43,7 +43,7 @@ import bindings.scripts.compute_interfaces_info_individual |
from bindings.scripts.compute_interfaces_info_individual import compute_info_individual, info_individual |
import bindings.scripts.compute_interfaces_info_overall |
from bindings.scripts.compute_interfaces_info_overall import compute_interfaces_info_overall, interfaces_info |
-from bindings.scripts.idl_compiler import IdlCompilerV8 |
+from bindings.scripts.idl_compiler import IdlCompilerDictionaryImpl, IdlCompilerV8 |
PASS_MESSAGE = 'All tests PASS!' |
@@ -192,6 +192,9 @@ def bindings_tests(output_directory, verbose): |
idl_compiler = IdlCompilerV8(output_directory, |
interfaces_info=interfaces_info, |
only_if_changed=True) |
+ dictionary_impl_compiler = IdlCompilerDictionaryImpl( |
+ output_directory, interfaces_info=interfaces_info, |
+ only_if_changed=True) |
idl_basenames = [filename |
for filename in os.listdir(test_input_directory) |
@@ -203,6 +206,10 @@ def bindings_tests(output_directory, verbose): |
idl_path = os.path.realpath( |
os.path.join(test_input_directory, idl_basename)) |
idl_compiler.compile_file(idl_path) |
+ definition_name, _ = os.path.splitext(idl_basename) |
+ if (definition_name in interfaces_info and |
+ interfaces_info[definition_name]['is_dictionary']): |
+ dictionary_impl_compiler.compile_file(idl_path) |
if verbose: |
print 'Compiled: %s' % filename |
finally: |