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

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

Issue 1856943002: Allow TransportController to create a QuicTransportChannel (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Sync to upstream Created 4 years, 7 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 | « webrtc/p2p/base/transportcontroller.cc ('k') | webrtc/p2p/quic/quictransport.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) 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 }], 100 }],
101 ['use_quic==1', { 101 ['use_quic==1', {
102 'dependencies': [ 102 'dependencies': [
103 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', 103 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic',
104 ], 104 ],
105 'sources': [ 105 'sources': [
106 'quic/quicconnectionhelper.cc', 106 'quic/quicconnectionhelper.cc',
107 'quic/quicconnectionhelper.h', 107 'quic/quicconnectionhelper.h',
108 'quic/quicsession.cc', 108 'quic/quicsession.cc',
109 'quic/quicsession.h', 109 'quic/quicsession.h',
110 'quic/quictransport.cc',
111 'quic/quictransport.h',
110 'quic/quictransportchannel.cc', 112 'quic/quictransportchannel.cc',
111 'quic/quictransportchannel.h', 113 'quic/quictransportchannel.h',
112 'quic/reliablequicstream.cc', 114 'quic/reliablequicstream.cc',
113 'quic/reliablequicstream.h', 115 'quic/reliablequicstream.h',
114 ], 116 ],
115 'export_dependent_settings': [ 117 'export_dependent_settings': [
116 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', 118 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic',
117 ], 119 ],
118 }], 120 }],
119 ], 121 ],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 'base/turnport_unittest.cc', 177 'base/turnport_unittest.cc',
176 'client/fakeportallocator.h', 178 'client/fakeportallocator.h',
177 'client/portallocator_unittest.cc', 179 'client/portallocator_unittest.cc',
178 'stunprober/stunprober_unittest.cc', 180 'stunprober/stunprober_unittest.cc',
179 ], 181 ],
180 'conditions': [ 182 'conditions': [
181 ['use_quic==1', { 183 ['use_quic==1', {
182 'sources': [ 184 'sources': [
183 'quic/quicconnectionhelper_unittest.cc', 185 'quic/quicconnectionhelper_unittest.cc',
184 'quic/quicsession_unittest.cc', 186 'quic/quicsession_unittest.cc',
187 'quic/quictransport_unittest.cc',
185 'quic/quictransportchannel_unittest.cc', 188 'quic/quictransportchannel_unittest.cc',
186 'quic/reliablequicstream_unittest.cc', 189 'quic/reliablequicstream_unittest.cc',
187 ], 190 ],
188 }], 191 }],
189 ], 192 ],
190 }, 193 },
191 }, # target rtc_p2p_unittest 194 }, # target rtc_p2p_unittest
192 ], # targets 195 ], # targets
193 }], # include_tests==1 196 }], # include_tests==1
194 ], # conditions 197 ], # conditions
195 } 198 }
196 199
OLDNEW
« no previous file with comments | « webrtc/p2p/base/transportcontroller.cc ('k') | webrtc/p2p/quic/quictransport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698