| 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 21 matching lines...) Expand all Loading... |
| 32 "idl_compiler.py", | 32 "idl_compiler.py", |
| 33 | 33 |
| 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_v8.py", | 43 "code_generator_v8.py", |
| 43 "v8_attributes.py", | 44 "v8_attributes.py", |
| 44 "v8_callback_interface.py", | 45 "v8_callback_interface.py", |
| 45 "v8_dictionary.py", | 46 "v8_dictionary.py", |
| 46 "v8_globals.py", | 47 "v8_globals.py", |
| 47 "v8_interface.py", | 48 "v8_interface.py", |
| 48 "v8_methods.py", | 49 "v8_methods.py", |
| 49 "v8_types.py", | 50 "v8_types.py", |
| 50 "v8_union.py", | 51 "v8_union.py", |
| 51 "v8_utilities.py", | 52 "v8_utilities.py", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 args += [ rebase_path(output_idl_file, root_build_dir) ] | 383 args += [ rebase_path(output_idl_file, root_build_dir) ] |
| 383 output_idl_files += [ output_idl_file ] | 384 output_idl_files += [ output_idl_file ] |
| 384 output_header_files += | 385 output_header_files += |
| 385 [ "$output_dir/${interface}${component}Constructors.h" ] | 386 [ "$output_dir/${interface}${component}Constructors.h" ] |
| 386 } | 387 } |
| 387 | 388 |
| 388 outputs = output_idl_files + output_header_files | 389 outputs = output_idl_files + output_header_files |
| 389 deps = invoker.deps | 390 deps = invoker.deps |
| 390 } | 391 } |
| 391 } | 392 } |
| OLD | NEW |