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