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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/BUILD.gn

Issue 2367543004: Extended implementation to use interface as arguments (Closed)
Patch Set: Use generated code for callback function 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 | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6d2b9785b7db81890d4ffcd5d2d0a27dc5b2a536..76ae490278aca3fd4874c5a61e6e29de51a92150 100644
--- a/third_party/WebKit/Source/bindings/core/v8/BUILD.gn
+++ b/third_party/WebKit/Source/bindings/core/v8/BUILD.gn
@@ -203,6 +203,11 @@ generated_core_testing_callback_function_files = [
"$bindings_core_v8_output_dir/V8TestInterfaceCallback.h",
]
+generated_core_timing_callback_function_files = [
+ "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.cpp",
+ "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.h",
+]
+
if (is_win) {
# On Windows Official release builds, we try to preserve symbol space.
bindings_core_generated_interface_files =
@@ -254,16 +259,18 @@ idl_impl("bindings_core_impl_generated") {
outputs = bindings_core_generated_union_type_files +
generated_core_dictionary_files +
generated_core_testing_dictionary_files +
- generated_core_testing_callback_function_files
+ generated_core_testing_callback_function_files +
+ generated_core_timing_callback_function_files
output_dir = bindings_core_v8_output_dir
target_component = "core"
}
# Compile the non-test sources generated above.
blink_core_sources("bindings_core_impl") {
- sources =
- bindings_core_generated_union_type_files +
- generated_core_dictionary_files + bindings_core_generated_interface_files
+ sources = bindings_core_generated_union_type_files +
+ generated_core_dictionary_files +
+ bindings_core_generated_interface_files +
+ generated_core_timing_callback_function_files
deps = [
":bindings_core_v8_generated",
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698