| 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 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 sources = modules_definition_idl_files | 29 sources = modules_definition_idl_files |
| 30 component_dir = "modules" | 30 component_dir = "modules" |
| 31 outputs = bindings_modules_generated_aggregate_files | 31 outputs = bindings_modules_generated_aggregate_files |
| 32 } | 32 } |
| 33 | 33 |
| 34 # bindings_modules_generated_individual in modules/v8/generated.gyp | 34 # bindings_modules_generated_individual in modules/v8/generated.gyp |
| 35 idl_compiler("bindings_modules_v8_generated_individual") { | 35 idl_compiler("bindings_modules_v8_generated_individual") { |
| 36 # Note in GYP this is modules_interface_idl_files but this variable is just | 36 # Note in GYP this is modules_interface_idl_files but this variable is just |
| 37 # defined to modules_definition_idl_files. | 37 # defined to modules_definition_idl_files. |
| 38 sources = modules_definition_idl_files | 38 sources = modules_definition_idl_files |
| 39 output_dir = bindings_modules_v8_output_dir | 39 output_dir = bindings_modules_output_dir |
| 40 output_name_suffix = "" | 40 output_name_suffix = "" |
| 41 target_component = "modules" | 41 target_component = "modules" |
| 42 is_web_modules = false |
| 42 } | 43 } |
| 43 | 44 |
| 44 # bindings_modules_impl_generated in modules/v8/generated.gyp | 45 # bindings_modules_impl_generated in modules/v8/generated.gyp |
| 45 idl_impl("bindings_modules_impl_generated") { | 46 idl_impl("bindings_modules_impl_generated") { |
| 46 sources = modules_dictionary_idl_files | 47 sources = modules_dictionary_idl_files |
| 47 outputs = bindings_modules_generated_union_type_files + | 48 outputs = bindings_modules_generated_union_type_files + |
| 48 generated_modules_dictionary_files | 49 generated_modules_dictionary_files |
| 49 output_dir = bindings_modules_v8_output_dir | 50 output_dir = bindings_modules_v8_output_dir |
| 50 target_component = "modules" | 51 target_component = "modules" |
| 51 } | 52 } |
| 52 | 53 |
| 53 # bindings_modules_generated_individual in modules/v8/generated.gyp | 54 # bindings_modules_generated_individual in modules/v8/generated.gyp |
| 54 idl_compiler("bindings_modules_v8_generated_partial_individual") { | 55 idl_compiler("bindings_modules_v8_generated_partial_individual") { |
| 55 # Note in GYP this is modules_interface_idl_files but this variable is just | 56 # Note in GYP this is modules_interface_idl_files but this variable is just |
| 56 # defined to modules_definition_idl_files. | 57 # defined to modules_definition_idl_files. |
| 57 sources = core_idl_with_modules_dependency_files + webcore_testing_idl_with_mo
dules_dependency_files | 58 sources = core_idl_with_modules_dependency_files + webcore_testing_idl_with_mo
dules_dependency_files |
| 58 output_dir = bindings_modules_v8_output_dir | 59 output_dir = bindings_modules_output_dir |
| 59 output_name_suffix = "Partial" | 60 output_name_suffix = "Partial" |
| 60 target_component = "modules" | 61 target_component = "modules" |
| 62 is_web_modules = false |
| 61 } | 63 } |
| 62 | 64 |
| 63 # bindings_modules_generated_aggregate in modules/v8/generated.gyp | 65 # bindings_modules_generated_aggregate in modules/v8/generated.gyp |
| 64 aggregate_generated_bindings("bindings_modules_v8_generated_partial_aggregate")
{ | 66 aggregate_generated_bindings("bindings_modules_v8_generated_partial_aggregate")
{ |
| 65 sources = core_idl_with_modules_dependency_files | 67 sources = core_idl_with_modules_dependency_files |
| 66 component_dir = "modules" | 68 component_dir = "modules" |
| 67 outputs = bindings_modules_generated_partial_aggregate_files | 69 outputs = bindings_modules_generated_partial_aggregate_files |
| 68 } | 70 } |
| 69 | 71 |
| 70 # GYP version: Source/bindings/modules/v8/generated.gyp:bindings_modules_v8_gene
rated_init_partial | 72 # GYP version: Source/bindings/modules/v8/generated.gyp:bindings_modules_v8_gene
rated_init_partial |
| (...skipping 12 matching lines...) Expand all Loading... |
| 83 "--output", | 85 "--output", |
| 84 rebase_path(bindings_modules_generated_init_partial_interfaces_file, root_bu
ild_dir), | 86 rebase_path(bindings_modules_generated_init_partial_interfaces_file, root_bu
ild_dir), |
| 85 "--write-file-only-if-changed=1", | 87 "--write-file-only-if-changed=1", |
| 86 ] | 88 ] |
| 87 | 89 |
| 88 deps = [ | 90 deps = [ |
| 89 "//third_party/WebKit/Source/bindings/modules:interfaces_info", | 91 "//third_party/WebKit/Source/bindings/modules:interfaces_info", |
| 90 ] | 92 ] |
| 91 } | 93 } |
| 92 | 94 |
| OLD | NEW |