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/core/v8/generated.gni") | 5 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
6 import("//third_party/WebKit/Source/bindings/modules/idl.gni") | 6 import("//third_party/WebKit/Source/bindings/modules/idl.gni") |
7 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 7 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
8 | 8 |
9 bindings_scripts_dir = get_path_info(".", "abspath") | 9 bindings_scripts_dir = get_path_info(".", "abspath") |
10 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts" | 10 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts" |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 "--generate-impl", | 230 "--generate-impl", |
231 rebase_path(idl_files_list, root_build_dir), | 231 rebase_path(idl_files_list, root_build_dir), |
232 ] | 232 ] |
233 | 233 |
234 deps = [ | 234 deps = [ |
235 # FIXME: should be interfaces_info_core (w/o modules) | 235 # FIXME: should be interfaces_info_core (w/o modules) |
236 # http://crbug.com/358074 | 236 # http://crbug.com/358074 |
237 "//third_party/WebKit/Source/bindings/core:interfaces_info_individual_core
", | 237 "//third_party/WebKit/Source/bindings/core:interfaces_info_individual_core
", |
238 "//third_party/WebKit/Source/bindings/modules:interfaces_info", | 238 "//third_party/WebKit/Source/bindings/modules:interfaces_info", |
239 "//third_party/WebKit/Source/bindings/modules:interfaces_info_individual_m
odules", | 239 "//third_party/WebKit/Source/bindings/modules:interfaces_info_individual_m
odules", |
| 240 "//third_party/WebKit/Source/bindings/scripts:cached_jinja_templates", |
240 "//third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_tables", | 241 "//third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_tables", |
241 "//third_party/WebKit/Source/bindings/scripts:cached_jinja_templates", | |
242 ] | 242 ] |
243 } | 243 } |
244 } | 244 } |
245 | 245 |
246 # Calls the aggregate_generated_bindings script. | 246 # Calls the aggregate_generated_bindings script. |
247 # | 247 # |
248 # Parameters: | 248 # Parameters: |
249 # sources = a list of source IDL files. | 249 # sources = a list of source IDL files. |
250 # component_dir = Name of directory for these files (one word, no slashes). | 250 # component_dir = Name of directory for these files (one word, no slashes). |
251 # outputs = a list of files to write to. | 251 # outputs = a list of files to write to. |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 args += [ rebase_path(output_idl_file, root_build_dir) ] | 355 args += [ rebase_path(output_idl_file, root_build_dir) ] |
356 output_idl_files += [ output_idl_file ] | 356 output_idl_files += [ output_idl_file ] |
357 output_header_files += | 357 output_header_files += |
358 [ "$output_dir/${interface}${component}Constructors.h" ] | 358 [ "$output_dir/${interface}${component}Constructors.h" ] |
359 } | 359 } |
360 | 360 |
361 outputs = output_idl_files + output_header_files | 361 outputs = output_idl_files + output_header_files |
362 deps = invoker.deps | 362 deps = invoker.deps |
363 } | 363 } |
364 } | 364 } |
OLD | NEW |