| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 "events/PopStateEventInit.idl", | 551 "events/PopStateEventInit.idl", |
| 552 "events/ProgressEventInit.idl", | 552 "events/ProgressEventInit.idl", |
| 553 "events/PromiseRejectionEventInit.idl", | 553 "events/PromiseRejectionEventInit.idl", |
| 554 "events/SecurityPolicyViolationEventInit.idl", | 554 "events/SecurityPolicyViolationEventInit.idl", |
| 555 "events/TouchEventInit.idl", | 555 "events/TouchEventInit.idl", |
| 556 "events/TransitionEventInit.idl", | 556 "events/TransitionEventInit.idl", |
| 557 "events/UIEventInit.idl", | 557 "events/UIEventInit.idl", |
| 558 "events/WheelEventInit.idl", | 558 "events/WheelEventInit.idl", |
| 559 "fileapi/BlobPropertyBag.idl", | 559 "fileapi/BlobPropertyBag.idl", |
| 560 "fileapi/FilePropertyBag.idl", | 560 "fileapi/FilePropertyBag.idl", |
| 561 "frame/ScrollIntoViewOptions.idl", |
| 561 "frame/ScrollOptions.idl", | 562 "frame/ScrollOptions.idl", |
| 562 "frame/ScrollToOptions.idl", | 563 "frame/ScrollToOptions.idl", |
| 563 "html/AssignedNodesOptions.idl", | 564 "html/AssignedNodesOptions.idl", |
| 564 "html/ImageDataColorSettings.idl", | 565 "html/ImageDataColorSettings.idl", |
| 565 "html/canvas/CanvasContextCreationAttributes.idl", | 566 "html/canvas/CanvasContextCreationAttributes.idl", |
| 566 "html/track/TrackEventInit.idl", | 567 "html/track/TrackEventInit.idl", |
| 567 "imagebitmap/ImageBitmapOptions.idl", | 568 "imagebitmap/ImageBitmapOptions.idl", |
| 568 "input/InputDeviceCapabilitiesInit.idl", | 569 "input/InputDeviceCapabilitiesInit.idl", |
| 569 "mojo/MojoCreateDataPipeOptions.idl", | 570 "mojo/MojoCreateDataPipeOptions.idl", |
| 570 "mojo/MojoCreateDataPipeResult.idl", | 571 "mojo/MojoCreateDataPipeResult.idl", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 653 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 653 core_generated_dependency_idl_files = | 654 core_generated_dependency_idl_files = |
| 654 core_global_constructors_generated_idl_files # partial interfaces | 655 core_global_constructors_generated_idl_files # partial interfaces |
| 655 | 656 |
| 656 # Dependency IDL files: don't generate individual bindings, but do process | 657 # Dependency IDL files: don't generate individual bindings, but do process |
| 657 # in IDL dependency computation, and count as build dependencies | 658 # in IDL dependency computation, and count as build dependencies |
| 658 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 659 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 659 # collision | 660 # collision |
| 660 core_all_dependency_idl_files = | 661 core_all_dependency_idl_files = |
| 661 core_static_dependency_idl_files + core_generated_dependency_idl_files | 662 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |