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

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

Issue 2377883003: First step in providing a UdpTransportChannel. (Closed)
Patch Set: Fix signed / unsigned comparison in test code. 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/httpportallocator.cc', 74 'client/httpportallocator.cc',
75 'client/httpportallocator.h', 75 'client/httpportallocator.h',
76 'client/socketmonitor.cc', 76 'client/socketmonitor.cc',
77 'client/socketmonitor.h', 77 'client/socketmonitor.h',
78 'rawudp/rawudptransportchannel.cc',
79 'rawudp/rawudptransportchannel.h',
78 ], 80 ],
79 'direct_dependent_settings': { 81 'direct_dependent_settings': {
80 'defines': [ 82 'defines': [
81 'FEATURE_ENABLE_VOICEMAIL', 83 'FEATURE_ENABLE_VOICEMAIL',
82 ], 84 ],
83 }, 85 },
84 'conditions': [ 86 'conditions': [
85 ['build_with_chromium==0', { 87 ['build_with_chromium==0', {
86 'sources': [ 88 'sources': [
87 'base/relayserver.cc', 89 'base/relayserver.cc',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'libstunprober', 138 'libstunprober',
137 'rtc_p2p' 139 'rtc_p2p'
138 ], 140 ],
139 'sources': [ 141 'sources': [
140 'stunprober/main.cc', 142 'stunprober/main.cc',
141 ], 143 ],
142 }, 144 },
143 ], # targets 145 ], # targets
144 } 146 }
145 147
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698