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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py

Issue 2372123002: [Bindings] Do not depend on IDL files to detect target component (Closed)
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/idl_compiler.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
index bb1f32114872e5894b25905436d84fddc573a28b..dd300bc9cc69dce55c500880a4acb8e24ac0938a 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
@@ -297,7 +297,8 @@ def bindings_tests(output_directory, verbose):
idl_compiler = IdlCompilerV8(
output_dir,
info_provider=component_info_providers[component],
- only_if_changed=True)
+ only_if_changed=True,
+ target_component=component)
if component == 'core':
partial_interface_output_dir = os.path.join(output_directory,
'modules')
@@ -313,7 +314,7 @@ def bindings_tests(output_directory, verbose):
dictionary_impl_compiler = IdlCompilerDictionaryImpl(
output_dir, info_provider=component_info_providers[component],
- only_if_changed=True)
+ only_if_changed=True, target_component=component)
idl_filenames = []
input_directory = os.path.join(test_input_directory, component)
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/idl_compiler.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698