| 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 | 6 |
| 7 # The paths in this file are absolute since this file is imported and the | 7 # The paths in this file are absolute since this file is imported and the |
| 8 # file lists must be valid from multple "current directories". | 8 # file lists must be valid from multple "current directories". |
| 9 | 9 |
| 10 bindings_modules_output_dir = "$bindings_output_dir/modules" | 10 bindings_modules_output_dir = "$bindings_output_dir/modules" |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 "webaudio/DynamicsCompressorOptions.idl", | 553 "webaudio/DynamicsCompressorOptions.idl", |
| 554 "webaudio/GainOptions.idl", | 554 "webaudio/GainOptions.idl", |
| 555 "webaudio/IIRFilterOptions.idl", | 555 "webaudio/IIRFilterOptions.idl", |
| 556 "webaudio/MediaElementAudioSourceOptions.idl", | 556 "webaudio/MediaElementAudioSourceOptions.idl", |
| 557 "webaudio/MediaStreamAudioSourceOptions.idl", | 557 "webaudio/MediaStreamAudioSourceOptions.idl", |
| 558 "webaudio/PannerOptions.idl", | 558 "webaudio/PannerOptions.idl", |
| 559 "webaudio/PeriodicWaveConstraints.idl", | 559 "webaudio/PeriodicWaveConstraints.idl", |
| 560 "webaudio/PeriodicWaveOptions.idl", | 560 "webaudio/PeriodicWaveOptions.idl", |
| 561 "webaudio/OscillatorOptions.idl", | 561 "webaudio/OscillatorOptions.idl", |
| 562 "webaudio/OfflineAudioCompletionEventInit.idl", | 562 "webaudio/OfflineAudioCompletionEventInit.idl", |
| 563 "webaudio/OfflineAudioContextOptions.idl", |
| 563 "webaudio/StereoPannerOptions.idl", | 564 "webaudio/StereoPannerOptions.idl", |
| 564 "webaudio/WaveShaperOptions.idl", | 565 "webaudio/WaveShaperOptions.idl", |
| 565 "webauth/AuthenticatorSelectionCriteria.idl", | 566 "webauth/AuthenticatorSelectionCriteria.idl", |
| 566 "webauth/CollectedClientData.idl", | 567 "webauth/CollectedClientData.idl", |
| 567 "webauth/MakeCredentialOptions.idl", | 568 "webauth/MakeCredentialOptions.idl", |
| 568 "webauth/PublicKeyCredentialDescriptor.idl", | 569 "webauth/PublicKeyCredentialDescriptor.idl", |
| 569 "webauth/PublicKeyCredentialEntity.idl", | 570 "webauth/PublicKeyCredentialEntity.idl", |
| 570 "webauth/PublicKeyCredentialParameters.idl", | 571 "webauth/PublicKeyCredentialParameters.idl", |
| 571 "webauth/PublicKeyCredentialRequestOptions.idl", | 572 "webauth/PublicKeyCredentialRequestOptions.idl", |
| 572 "webauth/PublicKeyCredentialUserEntity.idl", | 573 "webauth/PublicKeyCredentialUserEntity.idl", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 modules_dependency_idl_files + modules_testing_dependency_idl_files | 706 modules_dependency_idl_files + modules_testing_dependency_idl_files |
| 706 | 707 |
| 707 modules_generated_dependency_idl_files = | 708 modules_generated_dependency_idl_files = |
| 708 modules_core_global_constructors_generated_idl_files + | 709 modules_core_global_constructors_generated_idl_files + |
| 709 modules_global_constructors_generated_idl_files | 710 modules_global_constructors_generated_idl_files |
| 710 | 711 |
| 711 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid | 712 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid |
| 712 # collision | 713 # collision |
| 713 modules_all_dependency_idl_files = | 714 modules_all_dependency_idl_files = |
| 714 modules_static_dependency_idl_files + modules_generated_dependency_idl_files | 715 modules_static_dependency_idl_files + modules_generated_dependency_idl_files |
| OLD | NEW |