| 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("//sky/engine/bindings/idl.gni") | 5 import("//sky/engine/bindings/idl.gni") |
| 6 import("//sky/engine/core/core.gni") | 6 import("//sky/engine/core/core.gni") |
| 7 | 7 |
| 8 # Don't actually read idl.gypi since that just defines variables in terms of | |
| 9 # others, which gypi_to_gn doesn't handle. | |
| 10 | |
| 11 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces | 8 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces |
| 12 # Interface IDL files: generate individual bindings (includes testing) | 9 # Interface IDL files: generate individual bindings (includes testing) |
| 13 core_interface_idl_files = | 10 core_interface_idl_files = |
| 14 core_idl_files | 11 core_idl_files |
| 15 | 12 |
| 16 # Static IDL files | 13 # Static IDL files |
| 17 core_static_interface_idl_files = | 14 core_static_interface_idl_files = |
| 18 core_idl_files | 15 core_idl_files |
| 19 | 16 |
| 20 core_static_dependency_idl_files = | 17 core_static_dependency_idl_files = |
| (...skipping 22 matching lines...) Expand all Loading... |
| 43 core_generated_idl_files = | 40 core_generated_idl_files = |
| 44 core_generated_dependency_idl_files | 41 core_generated_dependency_idl_files |
| 45 | 42 |
| 46 # Dependency IDL files: don't generate individual bindings, but do process | 43 # Dependency IDL files: don't generate individual bindings, but do process |
| 47 # in IDL dependency computation, and count as build dependencies | 44 # in IDL dependency computation, and count as build dependencies |
| 48 # 'core_dependency_idl_files' is already used in engine/core, so avoid | 45 # 'core_dependency_idl_files' is already used in engine/core, so avoid |
| 49 # collision | 46 # collision |
| 50 core_all_dependency_idl_files = | 47 core_all_dependency_idl_files = |
| 51 core_static_dependency_idl_files + | 48 core_static_dependency_idl_files + |
| 52 core_generated_dependency_idl_files | 49 core_generated_dependency_idl_files |
| OLD | NEW |