| Index: Source/bindings/core/BUILD.gn
|
| diff --git a/Source/bindings/core/BUILD.gn b/Source/bindings/core/BUILD.gn
|
| index 211767fbc5b1f631bb1710cabb8d7eda5aff0613..e737d65afc22a72c62d5e5376514446857bbcf52 100644
|
| --- a/Source/bindings/core/BUILD.gn
|
| +++ b/Source/bindings/core/BUILD.gn
|
| @@ -8,10 +8,38 @@ import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
|
|
|
| visibility = [ "//third_party/WebKit/*" ]
|
|
|
| +core_idl_files_list = "$target_gen_dir/core_idl_files.tmp"
|
| +write_file(core_idl_files_list,
|
| + rebase_path(core_idl_files, root_build_dir))
|
| +
|
| # GYP version: Source/bindings/core/generated.gyp:interfaces_info_individual_core
|
| compute_interfaces_info_individual("interfaces_info_individual_core") {
|
| sources_static = core_static_idl_files
|
| sources_generated = core_generated_idl_files
|
| output_file =
|
| "$bindings_core_output_dir/InterfacesInfoCoreIndividual.pickle"
|
| + deps = [
|
| + "//third_party/WebKit/Source/bindings/core:core_global_constructors_idls",
|
| + ]
|
| +}
|
| +
|
| +# GYP version: Source/bindings/core/generated.gyp:core_global_objects
|
| +compute_global_objects("core_global_objects") {
|
| + sources = core_idl_files
|
| + sources_generated = []
|
| + output_file = "$bindings_core_output_dir/GlobalObjectsCore.pickle"
|
| +}
|
| +
|
| +# GYP version: Source/bindings/core/generated.gyp:core_global_constructors_idls
|
| +generate_global_constructors("core_global_constructors_idls") {
|
| + sources = core_idl_files
|
| + global_objects_file = "$bindings_core_output_dir/GlobalObjectsCore.pickle"
|
| + interfaces = [
|
| + "Window",
|
| + "SharedWorkerGlobalScope",
|
| + "DedicatedWorkerGlobalScope",
|
| + ]
|
| + output_idl_files = core_global_constructors_generated_idl_files
|
| + output_header_files = core_global_constructors_generated_header_files
|
| + deps = [ ":core_global_objects" ]
|
| }
|
|
|