| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//third_party/WebKit/Source/bindings/core/core.gni") | |
| 6 import("//third_party/WebKit/Source/bindings/idl.gni") | |
| 7 import("//third_party/WebKit/Source/core/core_idl_files.gni") | |
| 8 | |
| 9 # Don't actually read idl.gypi since that just defines variables in terms of | |
| 10 # others, which gypi_to_gn doesn't handle. | |
| 11 | |
| 12 core_definition_idl_files = core_dictionary_idl_files + core_idl_files + | |
| 13 core_idl_with_modules_dependency_files | |
| 14 | |
| 15 core_testing_definition_idl_files = | |
| 16 core_testing_dictionary_idl_files + webcore_testing_idl_files + | |
| 17 webcore_testing_idl_with_modules_dependency_files | |
| 18 | |
| 19 # Static IDL files | |
| 20 core_static_interface_idl_files = | |
| 21 core_definition_idl_files + core_testing_definition_idl_files + | |
| 22 core_typedefs_enums_only_idl_files | |
| 23 | |
| 24 core_static_dependency_idl_files = | |
| 25 core_dependency_idl_files + webcore_testing_dependency_idl_files | |
| 26 | |
| 27 # Generated IDL files | |
| 28 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | |
| 29 core_generated_dependency_idl_files = | |
| 30 core_global_constructors_generated_idl_files # partial interfaces | |
| 31 | |
| 32 # Dependency IDL files: don't generate individual bindings, but do process | |
| 33 # in IDL dependency computation, and count as build dependencies | |
| 34 # 'core_dependency_idl_files' is already used in Source/core, so avoid | |
| 35 # collision | |
| 36 core_all_dependency_idl_files = | |
| 37 core_static_dependency_idl_files + core_generated_dependency_idl_files | |
| OLD | NEW |