Index: third_party/WebKit/Source/bindings/core/v8/BUILD.gn |
diff --git a/third_party/WebKit/Source/bindings/core/v8/BUILD.gn b/third_party/WebKit/Source/bindings/core/v8/BUILD.gn |
index 63c108003aab3267fb187f1a5b347eac1e5118df..0add743c295e30de2345e9fc6d39cda69c30c172 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/BUILD.gn |
+++ b/third_party/WebKit/Source/bindings/core/v8/BUILD.gn |
@@ -194,6 +194,11 @@ generated_core_testing_dictionary_files = [ |
"$blink_core_output_dir/testing/InternalDictionaryDerivedDerived.h", |
] |
+generated_core_testing_callback_function_files = [ |
+ "$bindings_core_v8_output_dir/V8TestCallback.cpp", |
+ "$bindings_core_v8_output_dir/V8TestCallback.h", |
+] |
+ |
if (is_win && is_official_build) { |
bindings_core_generated_aggregate_files = |
[ "$bindings_core_v8_output_dir/V8GeneratedCoreBindings.cpp" ] |
@@ -309,9 +314,10 @@ idl_compiler("bindings_core_v8_generated_individual") { |
idl_impl("bindings_core_impl_generated") { |
sources = core_dictionary_idl_files + core_testing_dictionary_idl_files |
- outputs = |
- bindings_core_generated_union_type_files + |
- generated_core_dictionary_files + generated_core_testing_dictionary_files |
+ outputs = bindings_core_generated_union_type_files + |
+ generated_core_dictionary_files + |
+ generated_core_testing_dictionary_files + |
+ generated_core_testing_callback_function_files |
output_dir = bindings_core_v8_output_dir |
target_component = "core" |
} |
@@ -332,7 +338,8 @@ blink_core_sources("bindings_core_impl") { |
# as part of the "core" component so shouldn't use the blink_core_sources for |
# linking on Windows. |
source_set("testing") { |
- sources = generated_core_testing_dictionary_files |
+ sources = generated_core_testing_dictionary_files + |
+ generated_core_testing_callback_function_files |
configs -= core_config_remove |
configs += [ |