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/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
6 | 6 |
7 blink_modules_sources("peerconnection") { | 7 blink_modules_sources("peerconnection") { |
8 sources = [ | 8 sources = [ |
9 "RTCCertificate.cpp", | 9 "RTCCertificate.cpp", |
10 "RTCCertificate.h", | 10 "RTCCertificate.h", |
11 "RTCDTMFSender.cpp", | 11 "RTCDTMFSender.cpp", |
12 "RTCDTMFSender.h", | 12 "RTCDTMFSender.h", |
13 "RTCDTMFToneChangeEvent.cpp", | 13 "RTCDTMFToneChangeEvent.cpp", |
14 "RTCDTMFToneChangeEvent.h", | 14 "RTCDTMFToneChangeEvent.h", |
15 "RTCDataChannel.cpp", | 15 "RTCDataChannel.cpp", |
16 "RTCDataChannel.h", | 16 "RTCDataChannel.h", |
17 "RTCDataChannelEvent.cpp", | 17 "RTCDataChannelEvent.cpp", |
18 "RTCDataChannelEvent.h", | 18 "RTCDataChannelEvent.h", |
19 "RTCIceCandidate.cpp", | 19 "RTCIceCandidate.cpp", |
20 "RTCIceCandidate.h", | 20 "RTCIceCandidate.h", |
21 "RTCLegacyStatsReport.cpp", | 21 "RTCLegacyStatsReport.cpp", |
22 "RTCLegacyStatsReport.h", | 22 "RTCLegacyStatsReport.h", |
23 "RTCPeerConnection.cpp", | 23 "RTCPeerConnection.cpp", |
24 "RTCPeerConnection.h", | 24 "RTCPeerConnection.h", |
25 "RTCPeerConnectionErrorCallback.h", | 25 "RTCPeerConnectionErrorCallback.h", |
26 "RTCPeerConnectionIceEvent.cpp", | 26 "RTCPeerConnectionIceEvent.cpp", |
27 "RTCPeerConnectionIceEvent.h", | 27 "RTCPeerConnectionIceEvent.h", |
| 28 "RTCRtpContributingSource.cpp", |
| 29 "RTCRtpContributingSource.h", |
28 "RTCRtpReceiver.cpp", | 30 "RTCRtpReceiver.cpp", |
29 "RTCRtpReceiver.h", | 31 "RTCRtpReceiver.h", |
30 "RTCSessionDescription.cpp", | 32 "RTCSessionDescription.cpp", |
31 "RTCSessionDescription.h", | 33 "RTCSessionDescription.h", |
32 "RTCSessionDescriptionCallback.h", | 34 "RTCSessionDescriptionCallback.h", |
33 "RTCSessionDescriptionRequestImpl.cpp", | 35 "RTCSessionDescriptionRequestImpl.cpp", |
34 "RTCSessionDescriptionRequestImpl.h", | 36 "RTCSessionDescriptionRequestImpl.h", |
35 "RTCSessionDescriptionRequestPromiseImpl.cpp", | 37 "RTCSessionDescriptionRequestPromiseImpl.cpp", |
36 "RTCSessionDescriptionRequestPromiseImpl.h", | 38 "RTCSessionDescriptionRequestPromiseImpl.h", |
37 "RTCStatsCallback.h", | 39 "RTCStatsCallback.h", |
38 "RTCStatsReport.cpp", | 40 "RTCStatsReport.cpp", |
39 "RTCStatsReport.h", | 41 "RTCStatsReport.h", |
40 "RTCStatsRequestImpl.cpp", | 42 "RTCStatsRequestImpl.cpp", |
41 "RTCStatsRequestImpl.h", | 43 "RTCStatsRequestImpl.h", |
42 "RTCStatsResponse.cpp", | 44 "RTCStatsResponse.cpp", |
43 "RTCStatsResponse.h", | 45 "RTCStatsResponse.h", |
44 "RTCVoidRequestImpl.cpp", | 46 "RTCVoidRequestImpl.cpp", |
45 "RTCVoidRequestImpl.h", | 47 "RTCVoidRequestImpl.h", |
46 "RTCVoidRequestPromiseImpl.cpp", | 48 "RTCVoidRequestPromiseImpl.cpp", |
47 "RTCVoidRequestPromiseImpl.h", | 49 "RTCVoidRequestPromiseImpl.h", |
48 ] | 50 ] |
49 } | 51 } |
OLD | NEW |