| 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/core.gni") | |
| 6 import("//third_party/WebKit/Source/bindings/core/idl.gni") | |
| 7 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 5 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| 8 import("//third_party/WebKit/Source/core/core_idl_files.gni") | 6 import("//third_party/WebKit/Source/core/core_idl_files.gni") |
| 9 | 7 |
| 10 visibility = [ "//third_party/WebKit/*" ] | 8 visibility = [ "//third_party/WebKit/*" ] |
| 11 | 9 |
| 12 # Static IDL files / Generated IDL files | 10 # Static IDL files / Generated IDL files |
| 13 # | 11 # |
| 14 # In GYP, paths needed to be passed separately for static and generated files, a
s | 12 # In GYP, paths needed to be passed separately for static and generated files, a
s |
| 15 # static files are listed in a temporary file (b/c too long for command line), | 13 # static files are listed in a temporary file (b/c too long for command line), |
| 16 # but generated files must be passed at the command line, as their paths are | 14 # but generated files must be passed at the command line, as their paths are |
| (...skipping 26 matching lines...) Expand all Loading... |
| 43 generate_global_constructors("core_global_constructors_idls") { | 41 generate_global_constructors("core_global_constructors_idls") { |
| 44 sources = core_idl_files + core_idl_with_modules_dependency_files | 42 sources = core_idl_files + core_idl_with_modules_dependency_files |
| 45 global_objects_file = "$bindings_core_output_dir/GlobalObjectsCore.pickle" | 43 global_objects_file = "$bindings_core_output_dir/GlobalObjectsCore.pickle" |
| 46 interfaces = core_global_constructors_original_interfaces | 44 interfaces = core_global_constructors_original_interfaces |
| 47 component = "Core" | 45 component = "Core" |
| 48 output_dir = blink_core_output_dir | 46 output_dir = blink_core_output_dir |
| 49 deps = [ | 47 deps = [ |
| 50 ":core_global_objects", | 48 ":core_global_objects", |
| 51 ] | 49 ] |
| 52 } | 50 } |
| OLD | NEW |