| 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 "mojo/MojoMapBufferResult.idl", | 580 "mojo/MojoMapBufferResult.idl", |
| 581 "mojo/MojoReadDataOptions.idl", | 581 "mojo/MojoReadDataOptions.idl", |
| 582 "mojo/MojoReadDataResult.idl", | 582 "mojo/MojoReadDataResult.idl", |
| 583 "mojo/MojoReadMessageFlags.idl", | 583 "mojo/MojoReadMessageFlags.idl", |
| 584 "mojo/MojoReadMessageResult.idl", | 584 "mojo/MojoReadMessageResult.idl", |
| 585 "mojo/MojoWriteDataOptions.idl", | 585 "mojo/MojoWriteDataOptions.idl", |
| 586 "mojo/MojoWriteDataResult.idl", | 586 "mojo/MojoWriteDataResult.idl", |
| 587 "offscreencanvas/ImageEncodeOptions.idl", | 587 "offscreencanvas/ImageEncodeOptions.idl", |
| 588 "page/scrolling/ScrollStateInit.idl", | 588 "page/scrolling/ScrollStateInit.idl", |
| 589 "timing/PerformanceObserverInit.idl", | 589 "timing/PerformanceObserverInit.idl", |
| 590 "workers/WorkletOptions.idl", |
| 590 ], | 591 ], |
| 591 "abspath") | 592 "abspath") |
| 592 | 593 |
| 593 core_testing_dictionary_idl_files = | 594 core_testing_dictionary_idl_files = |
| 594 get_path_info([ | 595 get_path_info([ |
| 595 "testing/InternalDictionary.idl", | 596 "testing/InternalDictionary.idl", |
| 596 "testing/InternalDictionaryDerived.idl", | 597 "testing/InternalDictionaryDerived.idl", |
| 597 "testing/InternalDictionaryDerivedDerived.idl", | 598 "testing/InternalDictionaryDerivedDerived.idl", |
| 598 ], | 599 ], |
| 599 "abspath") | 600 "abspath") |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 655 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 655 core_generated_dependency_idl_files = | 656 core_generated_dependency_idl_files = |
| 656 core_global_constructors_generated_idl_files # partial interfaces | 657 core_global_constructors_generated_idl_files # partial interfaces |
| 657 | 658 |
| 658 # Dependency IDL files: don't generate individual bindings, but do process | 659 # Dependency IDL files: don't generate individual bindings, but do process |
| 659 # in IDL dependency computation, and count as build dependencies | 660 # in IDL dependency computation, and count as build dependencies |
| 660 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 661 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 661 # collision | 662 # collision |
| 662 core_all_dependency_idl_files = | 663 core_all_dependency_idl_files = |
| 663 core_static_dependency_idl_files + core_generated_dependency_idl_files | 664 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |