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 | 8 |
9 visibility = [ "//third_party/WebKit/*" ] | 9 visibility = [ "//third_party/WebKit/*" ] |
10 | 10 |
11 # bindings_modules_generated in modules/v8/generated.gyp | 11 # bindings_modules_generated in modules/v8/generated.gyp |
12 group("bindings_modules_generated") { | 12 group("bindings_modules_generated") { |
13 deps = [ | 13 deps = [ |
14 ":bindings_modules_generated_aggregate", | 14 ":bindings_modules_generated_aggregate", |
15 ":bindings_modules_generated_individual", | 15 ":bindings_modules_generated_individual", |
16 ] | 16 ] |
17 } | 17 } |
18 | 18 |
19 # bindings_modules_generated_aggregate in modules/v8/generated.gyp | 19 # bindings_modules_generated_aggregate in modules/v8/generated.gyp |
20 aggregate_generated_bindings("bindings_modules_generated_aggregate") { | 20 aggregate_generated_bindings("bindings_modules_generated_aggregate") { |
21 sources = modules_idl_files | 21 sources = modules_definition_idl_files |
22 component_dir = "modules" | 22 component_dir = "modules" |
23 outputs = bindings_modules_generated_aggregate_files | 23 outputs = bindings_modules_generated_aggregate_files |
24 } | 24 } |
25 | 25 |
26 # bindings_modules_generated_individual in modules/v8/generated.gyp | 26 # bindings_modules_generated_individual in modules/v8/generated.gyp |
27 idl_compiler("bindings_modules_generated_individual") { | 27 idl_compiler("bindings_modules_generated_individual") { |
28 # Note in GYP this is modules_interface_idl_files but this variable is just | 28 # Note in GYP this is modules_interface_idl_files but this variable is just |
29 # defined to modules_idl_files. | 29 # defined to modules_definition_idl_files. |
30 sources = modules_idl_files | 30 sources = modules_definition_idl_files |
31 output_dir = bindings_modules_v8_output_dir | 31 output_dir = bindings_modules_v8_output_dir |
32 } | 32 } |
| 33 |
| 34 # bindings_modules_dictionary_impl_generated in modules/v8/generated.gyp |
| 35 idl_dictionary("bindings_modules_dictionary_impl_generated") { |
| 36 sources = modules_dictionary_idl_files |
| 37 outputs = generated_modules_dictionary_files |
| 38 } |
OLD | NEW |