| 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 "RTCIceCandidateEvent.cpp", | |
| 22 "RTCIceCandidateEvent.h", | |
| 23 "RTCLegacyStatsReport.cpp", | 21 "RTCLegacyStatsReport.cpp", |
| 24 "RTCLegacyStatsReport.h", | 22 "RTCLegacyStatsReport.h", |
| 25 "RTCPeerConnection.cpp", | 23 "RTCPeerConnection.cpp", |
| 26 "RTCPeerConnection.h", | 24 "RTCPeerConnection.h", |
| 27 "RTCPeerConnectionErrorCallback.h", | 25 "RTCPeerConnectionErrorCallback.h", |
| 26 "RTCPeerConnectionIceEvent.cpp", |
| 27 "RTCPeerConnectionIceEvent.h", |
| 28 "RTCSessionDescription.cpp", | 28 "RTCSessionDescription.cpp", |
| 29 "RTCSessionDescription.h", | 29 "RTCSessionDescription.h", |
| 30 "RTCSessionDescriptionCallback.h", | 30 "RTCSessionDescriptionCallback.h", |
| 31 "RTCSessionDescriptionRequestImpl.cpp", | 31 "RTCSessionDescriptionRequestImpl.cpp", |
| 32 "RTCSessionDescriptionRequestImpl.h", | 32 "RTCSessionDescriptionRequestImpl.h", |
| 33 "RTCSessionDescriptionRequestPromiseImpl.cpp", | 33 "RTCSessionDescriptionRequestPromiseImpl.cpp", |
| 34 "RTCSessionDescriptionRequestPromiseImpl.h", | 34 "RTCSessionDescriptionRequestPromiseImpl.h", |
| 35 "RTCStatsReport.cpp", | 35 "RTCStatsReport.cpp", |
| 36 "RTCStatsReport.h", | 36 "RTCStatsReport.h", |
| 37 "RTCStatsRequestImpl.cpp", | 37 "RTCStatsRequestImpl.cpp", |
| 38 "RTCStatsRequestImpl.h", | 38 "RTCStatsRequestImpl.h", |
| 39 "RTCStatsResponse.cpp", | 39 "RTCStatsResponse.cpp", |
| 40 "RTCStatsResponse.h", | 40 "RTCStatsResponse.h", |
| 41 "RTCVoidRequestImpl.cpp", | 41 "RTCVoidRequestImpl.cpp", |
| 42 "RTCVoidRequestImpl.h", | 42 "RTCVoidRequestImpl.h", |
| 43 "RTCVoidRequestPromiseImpl.cpp", | 43 "RTCVoidRequestPromiseImpl.cpp", |
| 44 "RTCVoidRequestPromiseImpl.h", | 44 "RTCVoidRequestPromiseImpl.h", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| OLD | NEW |