Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: webrtc/api/api.gyp

Issue 2331373004: PeerConnection[Interface]::GetStats(RTCStatsCollectorCallback*) added. (Closed)
Patch Set: Reverted previous DEPS change (no need to rerun bots yet) Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 '<(webrtc_root)/media/media.gyp:rtc_media', 118 '<(webrtc_root)/media/media.gyp:rtc_media',
119 '<(webrtc_root)/pc/pc.gyp:rtc_pc', 119 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
120 '<(webrtc_root)/stats/stats.gyp:rtc_stats',
120 ], 121 ],
121 'sources': [ 122 'sources': [
122 'audiotrack.cc', 123 'audiotrack.cc',
123 'audiotrack.h', 124 'audiotrack.h',
124 'datachannel.cc', 125 'datachannel.cc',
125 'datachannel.h', 126 'datachannel.h',
126 'datachannelinterface.h', 127 'datachannelinterface.h',
127 'dtmfsender.cc', 128 'dtmfsender.cc',
128 'dtmfsender.h', 129 'dtmfsender.h',
129 'dtmfsenderinterface.h', 130 'dtmfsenderinterface.h',
(...skipping 20 matching lines...) Expand all
150 'peerconnection.cc', 151 'peerconnection.cc',
151 'peerconnection.h', 152 'peerconnection.h',
152 'peerconnectionfactory.cc', 153 'peerconnectionfactory.cc',
153 'peerconnectionfactory.h', 154 'peerconnectionfactory.h',
154 'peerconnectionfactoryproxy.h', 155 'peerconnectionfactoryproxy.h',
155 'peerconnectioninterface.h', 156 'peerconnectioninterface.h',
156 'peerconnectionproxy.h', 157 'peerconnectionproxy.h',
157 'proxy.h', 158 'proxy.h',
158 'remoteaudiosource.cc', 159 'remoteaudiosource.cc',
159 'remoteaudiosource.h', 160 'remoteaudiosource.h',
160 'rtcstats.h', 161 'rtcstatscollector.cc',
161 'rtcstats_objects.h', 162 'rtcstatscollector.h',
162 'rtcstatsreport.h',
163 'rtpparameters.h', 163 'rtpparameters.h',
164 'rtpreceiver.cc', 164 'rtpreceiver.cc',
165 'rtpreceiver.h', 165 'rtpreceiver.h',
166 'rtpreceiverinterface.h', 166 'rtpreceiverinterface.h',
167 'rtpsender.cc', 167 'rtpsender.cc',
168 'rtpsender.h', 168 'rtpsender.h',
169 'rtpsenderinterface.h', 169 'rtpsenderinterface.h',
170 'sctputils.cc', 170 'sctputils.cc',
171 'sctputils.h', 171 'sctputils.h',
172 'statscollector.cc', 172 'statscollector.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'quicdatachannel.h', 210 'quicdatachannel.h',
211 'quicdatatransport.cc', 211 'quicdatatransport.cc',
212 'quicdatatransport.h', 212 'quicdatatransport.h',
213 ], 213 ],
214 'export_dependent_settings': [ 214 'export_dependent_settings': [
215 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', 215 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic',
216 ], 216 ],
217 }], 217 }],
218 ], 218 ],
219 }, # target libjingle_peerconnection 219 }, # target libjingle_peerconnection
220 {
221 # GN version: webrtc/api:rtc_stats_api
222 'target_name': 'rtc_stats_api',
223 'type': 'static_library',
224 'dependencies': [
225 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
226 ],
227 'sources': [
228 'stats/rtcstats.h',
229 'stats/rtcstats_objects.h',
230 'stats/rtcstatsreport.h',
231 ],
232 }, # target rtc_stats_api
220 ], # targets 233 ], # targets
221 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698