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