Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 5 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/modules/modules.gni") | 7 import("//third_party/WebKit/Source/modules/modules.gni") |
| 8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") | 8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") |
| 9 | 9 |
| 10 visibility = [ "//third_party/WebKit/*" ] | 10 visibility = [ "//third_party/WebKit/*" ] |
| 11 | 11 |
| 12 group("bindings_modules_generated") { | 12 group("bindings_modules_generated") { |
| 13 public_deps = [ | 13 public_deps = [ |
| 14 ":bindings_modules_impl_generated", | 14 ":bindings_modules_impl_generated", |
| 15 ":bindings_modules_v8_generated_init_partial", | 15 ":bindings_modules_v8_generated_init_partial", |
| 16 ":bindings_v8_generated_reference_table", | |
|
Yuki
2017/05/12 15:20:10
"reference_table" seems not clear about what it is
peria
2017/06/01 08:33:31
Done.
| |
| 16 ":generate_bindings_modules_v8_interfaces", | 17 ":generate_bindings_modules_v8_interfaces", |
| 17 ":generate_bindings_modules_v8_partial_interfaces", | 18 ":generate_bindings_modules_v8_partial_interfaces", |
| 18 ] | 19 ] |
| 19 } | 20 } |
| 20 | 21 |
| 21 idl_compiler("generate_bindings_modules_v8_interfaces") { | 22 idl_compiler("generate_bindings_modules_v8_interfaces") { |
| 22 sources = modules_definition_idl_files | 23 sources = modules_definition_idl_files |
| 23 output_dir = bindings_modules_v8_output_dir | 24 output_dir = bindings_modules_v8_output_dir |
| 24 output_name_suffix = "" | 25 output_name_suffix = "" |
| 25 target_component = "modules" | 26 target_component = "modules" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 "{{response_file_name}}", | 62 "{{response_file_name}}", |
| 62 "--output", | 63 "--output", |
| 63 rebase_path(bindings_modules_generated_init_partial_interfaces_file, | 64 rebase_path(bindings_modules_generated_init_partial_interfaces_file, |
| 64 root_build_dir), | 65 root_build_dir), |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 "//third_party/WebKit/Source/bindings/modules:interfaces_info", | 69 "//third_party/WebKit/Source/bindings/modules:interfaces_info", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| 72 | |
| 73 idl_reference_table("bindings_v8_generated_reference_table") { | |
| 74 sources = core_idl_files + core_idl_with_modules_dependency_files + | |
| 75 modules_definition_idl_files | |
| 76 target_component = "modules" | |
| 77 outputs = bindings_generated_reference_files | |
| 78 output_dir = bindings_modules_v8_output_dir | |
| 79 } | |
| OLD | NEW |