OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 | 10 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 if (rtc_include_tests) { | 144 if (rtc_include_tests) { |
145 rtc_source_set("rtc_p2p_unittests") { | 145 rtc_source_set("rtc_p2p_unittests") { |
146 testonly = true | 146 testonly = true |
147 sources = [ | 147 sources = [ |
148 "base/asyncstuntcpsocket_unittest.cc", | 148 "base/asyncstuntcpsocket_unittest.cc", |
149 "base/dtlstransportchannel_unittest.cc", | 149 "base/dtlstransportchannel_unittest.cc", |
150 "base/fakeportallocator.h", | 150 "base/fakeportallocator.h", |
151 "base/faketransportcontroller.h", | 151 "base/faketransportcontroller.h", |
152 "base/jseptransport_unittest.cc", | 152 "base/jseptransport_unittest.cc", |
| 153 "base/mockicetransport.h", |
153 "base/p2ptransportchannel_unittest.cc", | 154 "base/p2ptransportchannel_unittest.cc", |
154 "base/port_unittest.cc", | 155 "base/port_unittest.cc", |
155 "base/portallocator_unittest.cc", | 156 "base/portallocator_unittest.cc", |
156 "base/pseudotcp_unittest.cc", | 157 "base/pseudotcp_unittest.cc", |
157 "base/relayport_unittest.cc", | 158 "base/relayport_unittest.cc", |
158 "base/relayserver_unittest.cc", | 159 "base/relayserver_unittest.cc", |
159 "base/stun_unittest.cc", | 160 "base/stun_unittest.cc", |
160 "base/stunport_unittest.cc", | 161 "base/stunport_unittest.cc", |
161 "base/stunrequest_unittest.cc", | 162 "base/stunrequest_unittest.cc", |
162 "base/stunserver_unittest.cc", | 163 "base/stunserver_unittest.cc", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "//testing/gmock", | 223 "//testing/gmock", |
223 "//testing/gtest", | 224 "//testing/gtest", |
224 ] | 225 ] |
225 if (!build_with_chromium && is_clang) { | 226 if (!build_with_chromium && is_clang) { |
226 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
227 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
228 } | 229 } |
229 defines = [ "GTEST_RELATIVE_PATH" ] | 230 defines = [ "GTEST_RELATIVE_PATH" ] |
230 } | 231 } |
231 } | 232 } |
OLD | NEW |