| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "events/WheelEventInit.idl", | 554 "events/WheelEventInit.idl", |
| 555 "fileapi/BlobPropertyBag.idl", | 555 "fileapi/BlobPropertyBag.idl", |
| 556 "fileapi/FilePropertyBag.idl", | 556 "fileapi/FilePropertyBag.idl", |
| 557 "frame/ScrollOptions.idl", | 557 "frame/ScrollOptions.idl", |
| 558 "frame/ScrollToOptions.idl", | 558 "frame/ScrollToOptions.idl", |
| 559 "html/AssignedNodesOptions.idl", | 559 "html/AssignedNodesOptions.idl", |
| 560 "html/canvas/CanvasContextCreationAttributes.idl", | 560 "html/canvas/CanvasContextCreationAttributes.idl", |
| 561 "html/track/TrackEventInit.idl", | 561 "html/track/TrackEventInit.idl", |
| 562 "imagebitmap/ImageBitmapOptions.idl", | 562 "imagebitmap/ImageBitmapOptions.idl", |
| 563 "input/InputDeviceCapabilitiesInit.idl", | 563 "input/InputDeviceCapabilitiesInit.idl", |
| 564 "offscreencanvas/ImageEncodeOptions.idl", |
| 564 "page/scrolling/ScrollStateInit.idl", | 565 "page/scrolling/ScrollStateInit.idl", |
| 565 "timing/PerformanceObserverInit.idl", | 566 "timing/PerformanceObserverInit.idl", |
| 566 ], | 567 ], |
| 567 "abspath") | 568 "abspath") |
| 568 | 569 |
| 569 core_testing_dictionary_idl_files = | 570 core_testing_dictionary_idl_files = |
| 570 get_path_info([ | 571 get_path_info([ |
| 571 "testing/InternalDictionary.idl", | 572 "testing/InternalDictionary.idl", |
| 572 "testing/InternalDictionaryDerived.idl", | 573 "testing/InternalDictionaryDerived.idl", |
| 573 "testing/InternalDictionaryDerivedDerived.idl", | 574 "testing/InternalDictionaryDerivedDerived.idl", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 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 |
| 631 core_generated_dependency_idl_files = | 632 core_generated_dependency_idl_files = |
| 632 core_global_constructors_generated_idl_files # partial interfaces | 633 core_global_constructors_generated_idl_files # partial interfaces |
| 633 | 634 |
| 634 # Dependency IDL files: don't generate individual bindings, but do process | 635 # Dependency IDL files: don't generate individual bindings, but do process |
| 635 # in IDL dependency computation, and count as build dependencies | 636 # in IDL dependency computation, and count as build dependencies |
| 636 # '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 |
| 637 # collision | 638 # collision |
| 638 core_all_dependency_idl_files = | 639 core_all_dependency_idl_files = |
| 639 core_static_dependency_idl_files + core_generated_dependency_idl_files | 640 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |