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