| 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 get_path_info([ | 575 get_path_info([ |
| 576 "testing/CallbackFunctionTest.idl", | 576 "testing/CallbackFunctionTest.idl", |
| 577 "testing/DeathAwareScriptWrappable.idl", | 577 "testing/DeathAwareScriptWrappable.idl", |
| 578 "testing/DictionaryTest.idl", | 578 "testing/DictionaryTest.idl", |
| 579 "testing/GCObservation.idl", | 579 "testing/GCObservation.idl", |
| 580 "testing/GarbageCollectedScriptWrappable.idl", | 580 "testing/GarbageCollectedScriptWrappable.idl", |
| 581 "testing/InternalSettings.idl", | 581 "testing/InternalSettings.idl", |
| 582 "testing/LayerRect.idl", | 582 "testing/LayerRect.idl", |
| 583 "testing/LayerRectList.idl", | 583 "testing/LayerRectList.idl", |
| 584 "testing/OriginTrialsTest.idl", | 584 "testing/OriginTrialsTest.idl", |
| 585 "testing/PrivateScriptTest.idl", | |
| 586 "testing/TypeConversions.idl", | 585 "testing/TypeConversions.idl", |
| 587 "testing/UnionTypesTest.idl", | 586 "testing/UnionTypesTest.idl", |
| 588 ], | 587 ], |
| 589 "abspath") | 588 "abspath") |
| 590 | 589 |
| 591 # Testing IDL files that have partial interfaces in modules. | 590 # Testing IDL files that have partial interfaces in modules. |
| 592 webcore_testing_idl_with_modules_dependency_files = | 591 webcore_testing_idl_with_modules_dependency_files = |
| 593 get_path_info([ | 592 get_path_info([ |
| 594 "testing/Internals.idl", | 593 "testing/Internals.idl", |
| 595 "testing/WorkerInternals.idl", | 594 "testing/WorkerInternals.idl", |
| 596 ], | 595 ], |
| 597 "abspath") | 596 "abspath") |
| 598 | 597 |
| 599 webcore_testing_dependency_idl_files = | 598 webcore_testing_dependency_idl_files = |
| 600 get_path_info([ | 599 get_path_info([ "testing/OriginTrialsTestPartial.idl" ], "abspath") |
| 601 "testing/OriginTrialsTestPartial.idl", | |
| 602 "testing/PartialPrivateScriptTest.idl", | |
| 603 ], | |
| 604 "abspath") | |
| 605 | 600 |
| 606 generated_webcore_testing_idl_files = | 601 generated_webcore_testing_idl_files = |
| 607 get_path_info( | 602 get_path_info( |
| 608 [ | 603 [ |
| 609 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", | 604 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", |
| 610 "$blink_core_output_dir/testing/InternalSettingsGenerated.idl", | 605 "$blink_core_output_dir/testing/InternalSettingsGenerated.idl", |
| 611 ], | 606 ], |
| 612 "abspath") | 607 "abspath") |
| 613 | 608 |
| 614 core_definition_idl_files = core_dictionary_idl_files + core_idl_files + | 609 core_definition_idl_files = core_dictionary_idl_files + core_idl_files + |
| (...skipping 15 matching lines...) Expand all Loading... |
| 630 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 625 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 631 core_generated_dependency_idl_files = | 626 core_generated_dependency_idl_files = |
| 632 core_global_constructors_generated_idl_files # partial interfaces | 627 core_global_constructors_generated_idl_files # partial interfaces |
| 633 | 628 |
| 634 # Dependency IDL files: don't generate individual bindings, but do process | 629 # Dependency IDL files: don't generate individual bindings, but do process |
| 635 # in IDL dependency computation, and count as build dependencies | 630 # in IDL dependency computation, and count as build dependencies |
| 636 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 631 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 637 # collision | 632 # collision |
| 638 core_all_dependency_idl_files = | 633 core_all_dependency_idl_files = |
| 639 core_static_dependency_idl_files + core_generated_dependency_idl_files | 634 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |