| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "base/transportcontroller.cc", | 67 "base/transportcontroller.cc", |
| 68 "base/transportcontroller.h", | 68 "base/transportcontroller.h", |
| 69 "base/transportdescription.cc", | 69 "base/transportdescription.cc", |
| 70 "base/transportdescription.h", | 70 "base/transportdescription.h", |
| 71 "base/transportdescriptionfactory.cc", | 71 "base/transportdescriptionfactory.cc", |
| 72 "base/transportdescriptionfactory.h", | 72 "base/transportdescriptionfactory.h", |
| 73 "base/transportinfo.h", | 73 "base/transportinfo.h", |
| 74 "base/turnport.cc", | 74 "base/turnport.cc", |
| 75 "base/turnport.h", | 75 "base/turnport.h", |
| 76 "base/udpport.h", | 76 "base/udpport.h", |
| 77 "base/udptransportchannel.cc", | 77 "base/udptransport.cc", |
| 78 "base/udptransportchannel.h", | 78 "base/udptransport.h", |
| 79 "client/basicportallocator.cc", | 79 "client/basicportallocator.cc", |
| 80 "client/basicportallocator.h", | 80 "client/basicportallocator.h", |
| 81 "client/socketmonitor.cc", | 81 "client/socketmonitor.cc", |
| 82 "client/socketmonitor.h", | 82 "client/socketmonitor.h", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 defines = [ "FEATURE_ENABLE_SSL" ] | 85 defines = [ "FEATURE_ENABLE_SSL" ] |
| 86 | 86 |
| 87 deps = [ | 87 deps = [ |
| 88 "../base:rtc_base", | 88 "../base:rtc_base", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "base/stunrequest_unittest.cc", | 162 "base/stunrequest_unittest.cc", |
| 163 "base/stunserver_unittest.cc", | 163 "base/stunserver_unittest.cc", |
| 164 "base/tcpport_unittest.cc", | 164 "base/tcpport_unittest.cc", |
| 165 "base/testrelayserver.h", | 165 "base/testrelayserver.h", |
| 166 "base/teststunserver.h", | 166 "base/teststunserver.h", |
| 167 "base/testturnserver.h", | 167 "base/testturnserver.h", |
| 168 "base/transportcontroller_unittest.cc", | 168 "base/transportcontroller_unittest.cc", |
| 169 "base/transportdescriptionfactory_unittest.cc", | 169 "base/transportdescriptionfactory_unittest.cc", |
| 170 "base/turnport_unittest.cc", | 170 "base/turnport_unittest.cc", |
| 171 "base/turnserver_unittest.cc", | 171 "base/turnserver_unittest.cc", |
| 172 "base/udptransportchannel_unittest.cc", | 172 "base/udptransport_unittest.cc", |
| 173 "client/basicportallocator_unittest.cc", | 173 "client/basicportallocator_unittest.cc", |
| 174 ] | 174 ] |
| 175 if (rtc_use_quic) { | 175 if (rtc_use_quic) { |
| 176 sources += [ | 176 sources += [ |
| 177 "quic/quicconnectionhelper_unittest.cc", | 177 "quic/quicconnectionhelper_unittest.cc", |
| 178 "quic/quicsession_unittest.cc", | 178 "quic/quicsession_unittest.cc", |
| 179 "quic/quictransport_unittest.cc", | 179 "quic/quictransport_unittest.cc", |
| 180 "quic/quictransportchannel_unittest.cc", | 180 "quic/quictransportchannel_unittest.cc", |
| 181 "quic/reliablequicstream_unittest.cc", | 181 "quic/reliablequicstream_unittest.cc", |
| 182 ] | 182 ] |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "//testing/gmock", | 223 "//testing/gmock", |
| 224 "//testing/gtest", | 224 "//testing/gtest", |
| 225 ] | 225 ] |
| 226 if (!build_with_chromium && is_clang) { | 226 if (!build_with_chromium && is_clang) { |
| 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 229 } | 229 } |
| 230 defines = [ "GTEST_RELATIVE_PATH" ] | 230 defines = [ "GTEST_RELATIVE_PATH" ] |
| 231 } | 231 } |
| 232 } | 232 } |
| OLD | NEW |