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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 "payments/PaymentDetailsUpdate.idl", | 486 "payments/PaymentDetailsUpdate.idl", |
487 "payments/PaymentItem.idl", | 487 "payments/PaymentItem.idl", |
488 "payments/PaymentMethodData.idl", | 488 "payments/PaymentMethodData.idl", |
489 "payments/PaymentOptions.idl", | 489 "payments/PaymentOptions.idl", |
490 "payments/PaymentInstrument.idl", | 490 "payments/PaymentInstrument.idl", |
491 "payments/PaymentRequestUpdateEventInit.idl", | 491 "payments/PaymentRequestUpdateEventInit.idl", |
492 "payments/PaymentShippingOption.idl", | 492 "payments/PaymentShippingOption.idl", |
493 "peerconnection/RTCAnswerOptions.idl", | 493 "peerconnection/RTCAnswerOptions.idl", |
494 "peerconnection/RTCConfiguration.idl", | 494 "peerconnection/RTCConfiguration.idl", |
495 "peerconnection/RTCDataChannelEventInit.idl", | 495 "peerconnection/RTCDataChannelEventInit.idl", |
| 496 "peerconnection/RTCDtlsFingerprint.idl", |
496 "peerconnection/RTCDTMFToneChangeEventInit.idl", | 497 "peerconnection/RTCDTMFToneChangeEventInit.idl", |
497 "peerconnection/RTCDataChannelInit.idl", | 498 "peerconnection/RTCDataChannelInit.idl", |
498 "peerconnection/RTCIceCandidateInit.idl", | 499 "peerconnection/RTCIceCandidateInit.idl", |
499 "peerconnection/RTCIceServer.idl", | 500 "peerconnection/RTCIceServer.idl", |
500 "peerconnection/RTCOfferAnswerOptions.idl", | 501 "peerconnection/RTCOfferAnswerOptions.idl", |
501 "peerconnection/RTCOfferOptions.idl", | 502 "peerconnection/RTCOfferOptions.idl", |
502 "peerconnection/RTCPeerConnectionIceEventInit.idl", | 503 "peerconnection/RTCPeerConnectionIceEventInit.idl", |
503 "peerconnection/RTCSessionDescriptionInit.idl", | 504 "peerconnection/RTCSessionDescriptionInit.idl", |
504 "permissions/MidiPermissionDescriptor.idl", | 505 "permissions/MidiPermissionDescriptor.idl", |
505 "permissions/PermissionDescriptor.idl", | 506 "permissions/PermissionDescriptor.idl", |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 modules_dependency_idl_files + modules_testing_dependency_idl_files | 693 modules_dependency_idl_files + modules_testing_dependency_idl_files |
693 | 694 |
694 modules_generated_dependency_idl_files = | 695 modules_generated_dependency_idl_files = |
695 modules_core_global_constructors_generated_idl_files + | 696 modules_core_global_constructors_generated_idl_files + |
696 modules_global_constructors_generated_idl_files | 697 modules_global_constructors_generated_idl_files |
697 | 698 |
698 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid | 699 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid |
699 # collision | 700 # collision |
700 modules_all_dependency_idl_files = | 701 modules_all_dependency_idl_files = |
701 modules_static_dependency_idl_files + modules_generated_dependency_idl_files | 702 modules_static_dependency_idl_files + modules_generated_dependency_idl_files |
OLD | NEW |