OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'call/audio_send_stream.h', | 108 'call/audio_send_stream.h', |
109 'call/audio_sink.h', | 109 'call/audio_sink.h', |
110 'call/audio_state.h', | 110 'call/audio_state.h', |
111 ], | 111 ], |
112 }, | 112 }, |
113 { | 113 { |
114 'target_name': 'libjingle_peerconnection', | 114 'target_name': 'libjingle_peerconnection', |
115 'type': 'static_library', | 115 'type': 'static_library', |
116 'dependencies': [ | 116 'dependencies': [ |
117 ':call_api', | 117 ':call_api', |
| 118 ':rtc_stats_api', |
118 '<(webrtc_root)/media/media.gyp:rtc_media', | 119 '<(webrtc_root)/media/media.gyp:rtc_media', |
119 '<(webrtc_root)/pc/pc.gyp:rtc_pc', | 120 '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
| 121 '<(webrtc_root)/stats/stats.gyp:rtc_stats', |
120 ], | 122 ], |
121 'sources': [ | 123 'sources': [ |
122 'audiotrack.cc', | 124 'audiotrack.cc', |
123 'audiotrack.h', | 125 'audiotrack.h', |
124 'datachannel.cc', | 126 'datachannel.cc', |
125 'datachannel.h', | 127 'datachannel.h', |
126 'datachannelinterface.h', | 128 'datachannelinterface.h', |
127 'dtmfsender.cc', | 129 'dtmfsender.cc', |
128 'dtmfsender.h', | 130 'dtmfsender.h', |
129 'dtmfsenderinterface.h', | 131 'dtmfsenderinterface.h', |
(...skipping 20 matching lines...) Expand all Loading... |
150 'peerconnection.cc', | 152 'peerconnection.cc', |
151 'peerconnection.h', | 153 'peerconnection.h', |
152 'peerconnectionfactory.cc', | 154 'peerconnectionfactory.cc', |
153 'peerconnectionfactory.h', | 155 'peerconnectionfactory.h', |
154 'peerconnectionfactoryproxy.h', | 156 'peerconnectionfactoryproxy.h', |
155 'peerconnectioninterface.h', | 157 'peerconnectioninterface.h', |
156 'peerconnectionproxy.h', | 158 'peerconnectionproxy.h', |
157 'proxy.h', | 159 'proxy.h', |
158 'remoteaudiosource.cc', | 160 'remoteaudiosource.cc', |
159 'remoteaudiosource.h', | 161 'remoteaudiosource.h', |
160 'rtcstats.h', | 162 'rtcstatscollector.cc', |
161 'rtcstats_objects.h', | 163 'rtcstatscollector.h', |
162 'rtcstatsreport.h', | |
163 'rtpparameters.h', | 164 'rtpparameters.h', |
164 'rtpreceiver.cc', | 165 'rtpreceiver.cc', |
165 'rtpreceiver.h', | 166 'rtpreceiver.h', |
166 'rtpreceiverinterface.h', | 167 'rtpreceiverinterface.h', |
167 'rtpsender.cc', | 168 'rtpsender.cc', |
168 'rtpsender.h', | 169 'rtpsender.h', |
169 'rtpsenderinterface.h', | 170 'rtpsenderinterface.h', |
170 'sctputils.cc', | 171 'sctputils.cc', |
171 'sctputils.h', | 172 'sctputils.h', |
172 'statscollector.cc', | 173 'statscollector.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'quicdatachannel.h', | 211 'quicdatachannel.h', |
211 'quicdatatransport.cc', | 212 'quicdatatransport.cc', |
212 'quicdatatransport.h', | 213 'quicdatatransport.h', |
213 ], | 214 ], |
214 'export_dependent_settings': [ | 215 'export_dependent_settings': [ |
215 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', | 216 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', |
216 ], | 217 ], |
217 }], | 218 }], |
218 ], | 219 ], |
219 }, # target libjingle_peerconnection | 220 }, # target libjingle_peerconnection |
| 221 { |
| 222 # GN version: webrtc/api:rtc_stats_api |
| 223 'target_name': 'rtc_stats_api', |
| 224 'type': 'static_library', |
| 225 'dependencies': [ |
| 226 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 227 ], |
| 228 'sources': [ |
| 229 'stats/rtcstats.h', |
| 230 'stats/rtcstats_objects.h', |
| 231 'stats/rtcstatsreport.h', |
| 232 ], |
| 233 }, # target rtc_stats_api |
220 ], # targets | 234 ], # targets |
221 } | 235 } |
OLD | NEW |