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

Side by Side Diff: webrtc/p2p/BUILD.gn

Issue 2722933002: Measure packet loss so we can use it to select ICE candidate pairs. (Closed)
Patch Set: Append ForTesting to TrackedPacketsString method name. Created 3 years, 9 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
« no previous file with comments | « no previous file | webrtc/p2p/base/packetlossestimator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 19 matching lines...) Expand all
30 "base/dtlstransportchannel.cc", 30 "base/dtlstransportchannel.cc",
31 "base/dtlstransportchannel.h", 31 "base/dtlstransportchannel.h",
32 "base/dtlstransportinternal.h", 32 "base/dtlstransportinternal.h",
33 "base/icetransportinternal.h", 33 "base/icetransportinternal.h",
34 "base/jseptransport.cc", 34 "base/jseptransport.cc",
35 "base/jseptransport.h", 35 "base/jseptransport.h",
36 "base/p2pconstants.cc", 36 "base/p2pconstants.cc",
37 "base/p2pconstants.h", 37 "base/p2pconstants.h",
38 "base/p2ptransportchannel.cc", 38 "base/p2ptransportchannel.cc",
39 "base/p2ptransportchannel.h", 39 "base/p2ptransportchannel.h",
40 "base/packetlossestimator.cc",
41 "base/packetlossestimator.h",
40 "base/packetsocketfactory.h", 42 "base/packetsocketfactory.h",
41 "base/packettransportinterface.h", 43 "base/packettransportinterface.h",
42 "base/packettransportinternal.h", 44 "base/packettransportinternal.h",
43 "base/port.cc", 45 "base/port.cc",
44 "base/port.h", 46 "base/port.h",
45 "base/portallocator.cc", 47 "base/portallocator.cc",
46 "base/portallocator.h", 48 "base/portallocator.h",
47 "base/portinterface.h", 49 "base/portinterface.h",
48 "base/pseudotcp.cc", 50 "base/pseudotcp.cc",
49 "base/pseudotcp.h", 51 "base/pseudotcp.h",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 "base/asyncstuntcpsocket_unittest.cc", 148 "base/asyncstuntcpsocket_unittest.cc",
147 "base/dtlstransportchannel_unittest.cc", 149 "base/dtlstransportchannel_unittest.cc",
148 "base/fakedtlstransport.h", 150 "base/fakedtlstransport.h",
149 "base/fakeicetransport.h", 151 "base/fakeicetransport.h",
150 "base/fakepackettransport.h", 152 "base/fakepackettransport.h",
151 "base/fakeportallocator.h", 153 "base/fakeportallocator.h",
152 "base/faketransportcontroller.h", 154 "base/faketransportcontroller.h",
153 "base/jseptransport_unittest.cc", 155 "base/jseptransport_unittest.cc",
154 "base/mockicetransport.h", 156 "base/mockicetransport.h",
155 "base/p2ptransportchannel_unittest.cc", 157 "base/p2ptransportchannel_unittest.cc",
158 "base/packetlossestimator_unittest.cc",
156 "base/port_unittest.cc", 159 "base/port_unittest.cc",
157 "base/portallocator_unittest.cc", 160 "base/portallocator_unittest.cc",
158 "base/pseudotcp_unittest.cc", 161 "base/pseudotcp_unittest.cc",
159 "base/relayport_unittest.cc", 162 "base/relayport_unittest.cc",
160 "base/relayserver_unittest.cc", 163 "base/relayserver_unittest.cc",
161 "base/stun_unittest.cc", 164 "base/stun_unittest.cc",
162 "base/stunport_unittest.cc", 165 "base/stunport_unittest.cc",
163 "base/stunrequest_unittest.cc", 166 "base/stunrequest_unittest.cc",
164 "base/stunserver_unittest.cc", 167 "base/stunserver_unittest.cc",
165 "base/tcpport_unittest.cc", 168 "base/tcpport_unittest.cc",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 "//testing/gmock", 227 "//testing/gmock",
225 "//testing/gtest", 228 "//testing/gtest",
226 ] 229 ]
227 if (!build_with_chromium && is_clang) { 230 if (!build_with_chromium && is_clang) {
228 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 231 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
229 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 232 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
230 } 233 }
231 defines = [ "GTEST_RELATIVE_PATH" ] 234 defines = [ "GTEST_RELATIVE_PATH" ]
232 } 235 }
233 } 236 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/p2p/base/packetlossestimator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698