| 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/idl.gni") | 5 import("//third_party/WebKit/Source/bindings/idl.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 # Don't actually read idl.gypi since that just defines variables in terms of | 8 # Don't actually read idl.gypi since that just defines variables in terms of |
| 9 # others, which gypi_to_gn doesn't handle. | 9 # others, which gypi_to_gn doesn't handle. |
| 10 | 10 |
| 11 core_testing_definition_idl_files = |
| 12 core_testing_dictionary_idl_files + |
| 13 webcore_testing_idl_files |
| 14 |
| 11 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces | 15 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces |
| 12 # Interface IDL files: generate individual bindings (includes testing) | 16 # Interface IDL files: generate individual bindings (includes testing) |
| 13 core_interface_idl_files = | 17 core_interface_idl_files = |
| 14 core_idl_files + | 18 core_idl_files + |
| 15 webcore_testing_idl_files + | 19 core_testing_definition_idl_files + |
| 16 generated_webcore_testing_idl_files | 20 generated_webcore_testing_idl_files |
| 17 | 21 |
| 18 # Static IDL files | 22 # Static IDL files |
| 19 core_static_interface_idl_files = | 23 core_static_interface_idl_files = |
| 20 core_idl_files + | 24 core_idl_files + |
| 21 webcore_testing_idl_files | 25 core_testing_definition_idl_files |
| 22 core_static_dependency_idl_files = | 26 core_static_dependency_idl_files = |
| 23 core_dependency_idl_files + | 27 core_dependency_idl_files + |
| 24 webcore_testing_dependency_idl_files | 28 webcore_testing_dependency_idl_files |
| 25 | 29 |
| 26 # Generated IDL files | 30 # Generated IDL files |
| 27 core_generated_interface_idl_files = | 31 core_generated_interface_idl_files = |
| 28 generated_webcore_testing_idl_files # interfaces | 32 generated_webcore_testing_idl_files # interfaces |
| 29 core_generated_dependency_idl_files = | 33 core_generated_dependency_idl_files = |
| 30 # FIXME: Generate separate core_global_constructors_idls | 34 # FIXME: Generate separate core_global_constructors_idls |
| 31 # http://crbug.com/358074 | 35 # http://crbug.com/358074 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 49 core_generated_interface_idl_files + | 53 core_generated_interface_idl_files + |
| 50 core_generated_dependency_idl_files | 54 core_generated_dependency_idl_files |
| 51 | 55 |
| 52 # Dependency IDL files: don't generate individual bindings, but do process | 56 # Dependency IDL files: don't generate individual bindings, but do process |
| 53 # in IDL dependency computation, and count as build dependencies | 57 # in IDL dependency computation, and count as build dependencies |
| 54 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 58 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 55 # collision | 59 # collision |
| 56 core_all_dependency_idl_files = | 60 core_all_dependency_idl_files = |
| 57 core_static_dependency_idl_files + | 61 core_static_dependency_idl_files + |
| 58 core_generated_dependency_idl_files | 62 core_generated_dependency_idl_files |
| OLD | NEW |