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

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

Issue 2377883003: First step in providing a UdpTransportChannel. (Closed)
Patch Set: Unit test: VirtualSocketServer, constructor and nits. Created 4 years, 1 month 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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 10 matching lines...) Expand all
21 'base/asyncstuntcpsocket.h', 21 'base/asyncstuntcpsocket.h',
22 'base/basicpacketsocketfactory.cc', 22 'base/basicpacketsocketfactory.cc',
23 'base/basicpacketsocketfactory.h', 23 'base/basicpacketsocketfactory.h',
24 'base/candidate.h', 24 'base/candidate.h',
25 'base/common.h', 25 'base/common.h',
26 'base/dtlstransport.h', 26 'base/dtlstransport.h',
27 'base/dtlstransportchannel.cc', 27 'base/dtlstransportchannel.cc',
28 'base/dtlstransportchannel.h', 28 'base/dtlstransportchannel.h',
29 'base/p2pconstants.cc', 29 'base/p2pconstants.cc',
30 'base/p2pconstants.h', 30 'base/p2pconstants.h',
31 'base/p2ptransport.cc',
32 'base/p2ptransport.h',
33 'base/p2ptransportchannel.cc', 31 'base/p2ptransportchannel.cc',
34 'base/p2ptransportchannel.h', 32 'base/p2ptransportchannel.h',
35 'base/packettransportinterface.h', 33 'base/packettransportinterface.h',
36 'base/packetsocketfactory.h', 34 'base/packetsocketfactory.h',
37 'base/port.cc', 35 'base/port.cc',
38 'base/port.h', 36 'base/port.h',
39 'base/portallocator.cc', 37 'base/portallocator.cc',
40 'base/portallocator.h', 38 'base/portallocator.h',
41 'base/portinterface.h', 39 'base/portinterface.h',
42 'base/pseudotcp.cc', 40 'base/pseudotcp.cc',
(...skipping 20 matching lines...) Expand all
63 'base/transportcontroller.cc', 61 'base/transportcontroller.cc',
64 'base/transportcontroller.h', 62 'base/transportcontroller.h',
65 'base/transportdescription.cc', 63 'base/transportdescription.cc',
66 'base/transportdescription.h', 64 'base/transportdescription.h',
67 'base/transportdescriptionfactory.cc', 65 'base/transportdescriptionfactory.cc',
68 'base/transportdescriptionfactory.h', 66 'base/transportdescriptionfactory.h',
69 'base/transportinfo.h', 67 'base/transportinfo.h',
70 'base/turnport.cc', 68 'base/turnport.cc',
71 'base/turnport.h', 69 'base/turnport.h',
72 'base/udpport.h', 70 'base/udpport.h',
71 'base/udptransport.cc',
72 'base/udptransport.h',
73 'base/udptransportchannel.cc',
74 'base/udptransportchannel.h',
73 'client/basicportallocator.cc', 75 'client/basicportallocator.cc',
74 'client/basicportallocator.h', 76 'client/basicportallocator.h',
75 'client/socketmonitor.cc', 77 'client/socketmonitor.cc',
76 'client/socketmonitor.h', 78 'client/socketmonitor.h',
77 ], 79 ],
78 'direct_dependent_settings': { 80 'direct_dependent_settings': {
79 'defines': [ 81 'defines': [
80 'FEATURE_ENABLE_VOICEMAIL', 82 'FEATURE_ENABLE_VOICEMAIL',
81 ], 83 ],
82 }, 84 },
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 '<(webrtc_root)/base/base.gyp:rtc_base', 126 '<(webrtc_root)/base/base.gyp:rtc_base',
125 '<(webrtc_root)/common.gyp:webrtc_common', 127 '<(webrtc_root)/common.gyp:webrtc_common',
126 ], 128 ],
127 'sources': [ 129 'sources': [
128 'stunprober/stunprober.cc', 130 'stunprober/stunprober.cc',
129 ], 131 ],
130 }, 132 },
131 ], # targets 133 ], # targets
132 } 134 }
133 135
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698