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