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

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

Issue 2377883003: First step in providing a UdpTransportChannel. (Closed)
Patch Set: Remove SetRemoteAddrAndPort() method. Created 4 years, 2 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) 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'base/transportdescriptionfactory.cc', 66 'base/transportdescriptionfactory.cc',
67 'base/transportdescriptionfactory.h', 67 'base/transportdescriptionfactory.h',
68 'base/transportinfo.h', 68 'base/transportinfo.h',
69 'base/turnport.cc', 69 'base/turnport.cc',
70 'base/turnport.h', 70 'base/turnport.h',
71 'base/udpport.h', 71 'base/udpport.h',
72 'client/basicportallocator.cc', 72 'client/basicportallocator.cc',
73 'client/basicportallocator.h', 73 'client/basicportallocator.h',
74 'client/socketmonitor.cc', 74 'client/socketmonitor.cc',
75 'client/socketmonitor.h', 75 'client/socketmonitor.h',
76 'rawudp/rawudptransportchannel.cc',
77 'rawudp/rawudptransportchannel.h',
pthatcher1 2016/10/07 17:36:35 I'm guessing udptransportchannel.cc and UdpTranspo
76 ], 78 ],
77 'direct_dependent_settings': { 79 'direct_dependent_settings': {
78 'defines': [ 80 'defines': [
79 'FEATURE_ENABLE_VOICEMAIL', 81 'FEATURE_ENABLE_VOICEMAIL',
80 ], 82 ],
81 }, 83 },
82 'conditions': [ 84 'conditions': [
83 ['build_with_chromium==0', { 85 ['build_with_chromium==0', {
84 'sources': [ 86 'sources': [
85 'base/relayserver.cc', 87 'base/relayserver.cc',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'libstunprober', 136 'libstunprober',
135 'rtc_p2p' 137 'rtc_p2p'
136 ], 138 ],
137 'sources': [ 139 'sources': [
138 'stunprober/main.cc', 140 'stunprober/main.cc',
139 ], 141 ],
140 }, 142 },
141 ], # targets 143 ], # targets
142 } 144 }
143 145
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698