| 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/core/core_idl_files.gni") | 5 import("//third_party/WebKit/Source/core/core_idl_files.gni") |
| 6 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") | 6 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") |
| 7 | 7 |
| 8 bindings_scripts_dir = get_path_info(".", "abspath") | 8 bindings_scripts_dir = get_path_info(".", "abspath") |
| 9 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts" | 9 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts" |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 # Blink IDL front end (ex-lexer/parser) | 34 # Blink IDL front end (ex-lexer/parser) |
| 35 "idl_definitions.py", | 35 "idl_definitions.py", |
| 36 "idl_reader.py", | 36 "idl_reader.py", |
| 37 "idl_types.py", | 37 "idl_types.py", |
| 38 "idl_validator.py", | 38 "idl_validator.py", |
| 39 "interface_dependency_resolver.py", | 39 "interface_dependency_resolver.py", |
| 40 | 40 |
| 41 # V8 code generator | 41 # V8 code generator |
| 42 "code_generator.py", | 42 "code_generator.py", |
| 43 "code_generator_v8.py", | 43 "code_generator_v8.py", |
| 44 "code_generator_web_module.py", |
| 44 "v8_attributes.py", | 45 "v8_attributes.py", |
| 45 "v8_callback_function.py", | 46 "v8_callback_function.py", |
| 46 "v8_callback_interface.py", | 47 "v8_callback_interface.py", |
| 47 "v8_dictionary.py", | 48 "v8_dictionary.py", |
| 48 "v8_globals.py", | 49 "v8_globals.py", |
| 49 "v8_interface.py", | 50 "v8_interface.py", |
| 50 "v8_methods.py", | 51 "v8_methods.py", |
| 51 "v8_types.py", | 52 "v8_types.py", |
| 52 "v8_union.py", | 53 "v8_union.py", |
| 53 "v8_utilities.py", | 54 "v8_utilities.py", |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 args += [ rebase_path(output_idl_file, root_build_dir) ] | 368 args += [ rebase_path(output_idl_file, root_build_dir) ] |
| 368 output_idl_files += [ output_idl_file ] | 369 output_idl_files += [ output_idl_file ] |
| 369 output_header_files += | 370 output_header_files += |
| 370 [ "$output_dir/${interface}${component}Constructors.h" ] | 371 [ "$output_dir/${interface}${component}Constructors.h" ] |
| 371 } | 372 } |
| 372 | 373 |
| 373 outputs = output_idl_files + output_header_files | 374 outputs = output_idl_files + output_header_files |
| 374 deps = invoker.deps | 375 deps = invoker.deps |
| 375 } | 376 } |
| 376 } | 377 } |
| OLD | NEW |