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", |
(...skipping 14 matching lines...) Expand all Loading... |
25 "RTCPeerConnection.cpp", | 25 "RTCPeerConnection.cpp", |
26 "RTCPeerConnection.h", | 26 "RTCPeerConnection.h", |
27 "RTCPeerConnectionErrorCallback.h", | 27 "RTCPeerConnectionErrorCallback.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", |
| 36 "RTCStatsReport.h", |
35 "RTCStatsRequestImpl.cpp", | 37 "RTCStatsRequestImpl.cpp", |
36 "RTCStatsRequestImpl.h", | 38 "RTCStatsRequestImpl.h", |
37 "RTCStatsResponse.cpp", | 39 "RTCStatsResponse.cpp", |
38 "RTCStatsResponse.h", | 40 "RTCStatsResponse.h", |
39 "RTCVoidRequestImpl.cpp", | 41 "RTCVoidRequestImpl.cpp", |
40 "RTCVoidRequestImpl.h", | 42 "RTCVoidRequestImpl.h", |
41 "RTCVoidRequestPromiseImpl.cpp", | 43 "RTCVoidRequestPromiseImpl.cpp", |
42 "RTCVoidRequestPromiseImpl.h", | 44 "RTCVoidRequestPromiseImpl.h", |
43 ] | 45 ] |
44 } | 46 } |
OLD | NEW |