| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 # The paths in this file are absolute since this file is imported and the | 8 # The paths in this file are absolute since this file is imported and the |
| 9 # file lists must be valid from multple "current directories". | 9 # file lists must be valid from multple "current directories". |
| 10 | 10 |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 "svg/SVGDocument.idl", | 480 "svg/SVGDocument.idl", |
| 481 "svg/SVGFilterPrimitiveStandardAttributes.idl", | 481 "svg/SVGFilterPrimitiveStandardAttributes.idl", |
| 482 "svg/SVGFitToViewBox.idl", | 482 "svg/SVGFitToViewBox.idl", |
| 483 "svg/SVGTests.idl", | 483 "svg/SVGTests.idl", |
| 484 "svg/SVGURIReference.idl", | 484 "svg/SVGURIReference.idl", |
| 485 "svg/SVGZoomAndPan.idl", | 485 "svg/SVGZoomAndPan.idl", |
| 486 "timing/SharedWorkerPerformance.idl", | 486 "timing/SharedWorkerPerformance.idl", |
| 487 "timing/WindowPerformance.idl", | 487 "timing/WindowPerformance.idl", |
| 488 "timing/WorkerGlobalScopePerformance.idl", | 488 "timing/WorkerGlobalScopePerformance.idl", |
| 489 "workers/AbstractWorker.idl", | 489 "workers/AbstractWorker.idl", |
| 490 "xml/DocumentXMLTreeViewer.idl", | |
| 491 "xml/DocumentXPathEvaluator.idl", | 490 "xml/DocumentXPathEvaluator.idl", |
| 492 ], | 491 ], |
| 493 "abspath") | 492 "abspath") |
| 494 | 493 |
| 495 # IDL files that only have typedefs/enums. | 494 # IDL files that only have typedefs/enums. |
| 496 core_typedefs_enums_only_idl_files = | 495 core_typedefs_enums_only_idl_files = |
| 497 get_path_info([ | 496 get_path_info([ |
| 498 "dom/CommonDefinitions.idl", | 497 "dom/CommonDefinitions.idl", |
| 499 "timing/DOMHighResTimeStamp.idl", | 498 "timing/DOMHighResTimeStamp.idl", |
| 500 "timing/PerformanceEntryList.idl", | 499 "timing/PerformanceEntryList.idl", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 631 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 633 core_generated_dependency_idl_files = | 632 core_generated_dependency_idl_files = |
| 634 core_global_constructors_generated_idl_files # partial interfaces | 633 core_global_constructors_generated_idl_files # partial interfaces |
| 635 | 634 |
| 636 # Dependency IDL files: don't generate individual bindings, but do process | 635 # Dependency IDL files: don't generate individual bindings, but do process |
| 637 # in IDL dependency computation, and count as build dependencies | 636 # in IDL dependency computation, and count as build dependencies |
| 638 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 637 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 639 # collision | 638 # collision |
| 640 core_all_dependency_idl_files = | 639 core_all_dependency_idl_files = |
| 641 core_static_dependency_idl_files + core_generated_dependency_idl_files | 640 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |