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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ], # targets | 151 ], # targets |
152 'conditions': [ | 152 'conditions': [ |
153 ['include_tests==1', { | 153 ['include_tests==1', { |
154 'targets' : [ | 154 'targets' : [ |
155 { | 155 { |
156 'target_name': 'rtc_p2p_unittest', | 156 'target_name': 'rtc_p2p_unittest', |
157 'type': 'none', | 157 'type': 'none', |
158 'direct_dependent_settings': { | 158 'direct_dependent_settings': { |
159 'sources': [ | 159 'sources': [ |
160 'base/dtlstransportchannel_unittest.cc', | 160 'base/dtlstransportchannel_unittest.cc', |
161 'base/fakeportallocator.h', | |
162 'base/faketransportcontroller.h', | 161 'base/faketransportcontroller.h', |
163 'base/p2ptransportchannel_unittest.cc', | 162 'base/p2ptransportchannel_unittest.cc', |
164 'base/port_unittest.cc', | 163 'base/port_unittest.cc', |
165 'base/portallocator_unittest.cc', | |
166 'base/pseudotcp_unittest.cc', | 164 'base/pseudotcp_unittest.cc', |
167 'base/relayport_unittest.cc', | 165 'base/relayport_unittest.cc', |
168 'base/relayserver_unittest.cc', | 166 'base/relayserver_unittest.cc', |
169 'base/stun_unittest.cc', | 167 'base/stun_unittest.cc', |
170 'base/stunport_unittest.cc', | 168 'base/stunport_unittest.cc', |
171 'base/stunrequest_unittest.cc', | 169 'base/stunrequest_unittest.cc', |
172 'base/stunserver_unittest.cc', | 170 'base/stunserver_unittest.cc', |
173 'base/testrelayserver.h', | 171 'base/testrelayserver.h', |
174 'base/teststunserver.h', | 172 'base/teststunserver.h', |
175 'base/testturnserver.h', | 173 'base/testturnserver.h', |
176 'base/transport_unittest.cc', | 174 'base/transport_unittest.cc', |
177 'base/transportcontroller_unittest.cc', | 175 'base/transportcontroller_unittest.cc', |
178 'base/transportdescriptionfactory_unittest.cc', | 176 'base/transportdescriptionfactory_unittest.cc', |
179 'base/turnport_unittest.cc', | 177 'base/turnport_unittest.cc', |
180 'client/basicportallocator_unittest.cc', | 178 'client/fakeportallocator.h', |
| 179 'client/portallocator_unittest.cc', |
181 'stunprober/stunprober_unittest.cc', | 180 'stunprober/stunprober_unittest.cc', |
182 ], | 181 ], |
183 'conditions': [ | 182 'conditions': [ |
184 ['use_quic==1', { | 183 ['use_quic==1', { |
185 'sources': [ | 184 'sources': [ |
186 'quic/quicconnectionhelper_unittest.cc', | 185 'quic/quicconnectionhelper_unittest.cc', |
187 'quic/quicsession_unittest.cc', | 186 'quic/quicsession_unittest.cc', |
188 'quic/quictransport_unittest.cc', | 187 'quic/quictransport_unittest.cc', |
189 'quic/quictransportchannel_unittest.cc', | 188 'quic/quictransportchannel_unittest.cc', |
190 'quic/reliablequicstream_unittest.cc', | 189 'quic/reliablequicstream_unittest.cc', |
191 ], | 190 ], |
192 }], | 191 }], |
193 ], | 192 ], |
194 }, | 193 }, |
195 }, # target rtc_p2p_unittest | 194 }, # target rtc_p2p_unittest |
196 ], # targets | 195 ], # targets |
197 }], # include_tests==1 | 196 }], # include_tests==1 |
198 ], # conditions | 197 ], # conditions |
199 } | 198 } |
200 | 199 |
OLD | NEW |