OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |