| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "base/transportcontroller.cc", | 71 "base/transportcontroller.cc", |
| 72 "base/transportcontroller.h", | 72 "base/transportcontroller.h", |
| 73 "base/transportdescription.cc", | 73 "base/transportdescription.cc", |
| 74 "base/transportdescription.h", | 74 "base/transportdescription.h", |
| 75 "base/transportdescriptionfactory.cc", | 75 "base/transportdescriptionfactory.cc", |
| 76 "base/transportdescriptionfactory.h", | 76 "base/transportdescriptionfactory.h", |
| 77 "base/transportinfo.h", | 77 "base/transportinfo.h", |
| 78 "base/turnport.cc", | 78 "base/turnport.cc", |
| 79 "base/turnport.h", | 79 "base/turnport.h", |
| 80 "base/udpport.h", | 80 "base/udpport.h", |
| 81 "base/udptransportchannel.cc", |
| 82 "base/udptransportchannel.h", |
| 81 "client/basicportallocator.cc", | 83 "client/basicportallocator.cc", |
| 82 "client/basicportallocator.h", | 84 "client/basicportallocator.h", |
| 83 "client/socketmonitor.cc", | 85 "client/socketmonitor.cc", |
| 84 "client/socketmonitor.h", | 86 "client/socketmonitor.h", |
| 85 ] | 87 ] |
| 86 | 88 |
| 87 defines = [ "FEATURE_ENABLE_SSL" ] | 89 defines = [ "FEATURE_ENABLE_SSL" ] |
| 88 | 90 |
| 89 deps = [ | 91 deps = [ |
| 90 "../base:rtc_base", | 92 "../base:rtc_base", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 174 } | 176 } |
| 175 | 177 |
| 176 deps = [ | 178 deps = [ |
| 177 ":libstunprober", | 179 ":libstunprober", |
| 178 ":rtc_p2p", | 180 ":rtc_p2p", |
| 179 "../system_wrappers:field_trial_default", | 181 "../system_wrappers:field_trial_default", |
| 180 ] | 182 ] |
| 181 } | 183 } |
| 182 } | 184 } |
| OLD | NEW |