| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 public_deps += [ "//third_party/libquic" ] | 137 public_deps += [ "//third_party/libquic" ] |
| 138 } | 138 } |
| 139 } | 139 } |
| 140 | 140 |
| 141 if (rtc_include_tests) { | 141 if (rtc_include_tests) { |
| 142 rtc_source_set("rtc_p2p_unittests") { | 142 rtc_source_set("rtc_p2p_unittests") { |
| 143 testonly = true | 143 testonly = true |
| 144 sources = [ | 144 sources = [ |
| 145 "base/asyncstuntcpsocket_unittest.cc", | 145 "base/asyncstuntcpsocket_unittest.cc", |
| 146 "base/dtlstransportchannel_unittest.cc", | 146 "base/dtlstransportchannel_unittest.cc", |
| 147 "base/fakedtlstransport.h", |
| 148 "base/fakeicetransport.h", |
| 149 "base/fakepackettransport.h", |
| 147 "base/fakeportallocator.h", | 150 "base/fakeportallocator.h", |
| 148 "base/faketransportcontroller.h", | 151 "base/faketransportcontroller.h", |
| 149 "base/jseptransport_unittest.cc", | 152 "base/jseptransport_unittest.cc", |
| 150 "base/mockicetransport.h", | 153 "base/mockicetransport.h", |
| 151 "base/p2ptransportchannel_unittest.cc", | 154 "base/p2ptransportchannel_unittest.cc", |
| 152 "base/port_unittest.cc", | 155 "base/port_unittest.cc", |
| 153 "base/portallocator_unittest.cc", | 156 "base/portallocator_unittest.cc", |
| 154 "base/pseudotcp_unittest.cc", | 157 "base/pseudotcp_unittest.cc", |
| 155 "base/relayport_unittest.cc", | 158 "base/relayport_unittest.cc", |
| 156 "base/relayserver_unittest.cc", | 159 "base/relayserver_unittest.cc", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 "//testing/gmock", | 223 "//testing/gmock", |
| 221 "//testing/gtest", | 224 "//testing/gtest", |
| 222 ] | 225 ] |
| 223 if (!build_with_chromium && is_clang) { | 226 if (!build_with_chromium && is_clang) { |
| 224 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 225 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 226 } | 229 } |
| 227 defines = [ "GTEST_RELATIVE_PATH" ] | 230 defines = [ "GTEST_RELATIVE_PATH" ] |
| 228 } | 231 } |
| 229 } | 232 } |
| OLD | NEW |