| 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/transportdescription.cc", | 67 "base/transportdescription.cc", |
| 68 "base/transportdescription.h", | 68 "base/transportdescription.h", |
| 69 "base/transportdescriptionfactory.cc", | 69 "base/transportdescriptionfactory.cc", |
| 70 "base/transportdescriptionfactory.h", | 70 "base/transportdescriptionfactory.h", |
| 71 "base/transportinfo.h", | 71 "base/transportinfo.h", |
| 72 "base/turnport.cc", | 72 "base/turnport.cc", |
| 73 "base/turnport.h", | 73 "base/turnport.h", |
| 74 "base/udpport.h", | 74 "base/udpport.h", |
| 75 "client/basicportallocator.cc", | 75 "client/basicportallocator.cc", |
| 76 "client/basicportallocator.h", | 76 "client/basicportallocator.h", |
| 77 "client/httpportallocator.cc", | |
| 78 "client/httpportallocator.h", | |
| 79 "client/socketmonitor.cc", | 77 "client/socketmonitor.cc", |
| 80 "client/socketmonitor.h", | 78 "client/socketmonitor.h", |
| 81 ] | 79 ] |
| 82 | 80 |
| 83 defines = [ "FEATURE_ENABLE_SSL" ] | 81 defines = [ "FEATURE_ENABLE_SSL" ] |
| 84 | 82 |
| 85 deps = [ | 83 deps = [ |
| 86 "../base:rtc_base", | 84 "../base:rtc_base", |
| 87 "../libjingle/xmllite", | 85 "../libjingle/xmllite", |
| 88 ] | 86 ] |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 172 } | 170 } |
| 173 | 171 |
| 174 deps = [ | 172 deps = [ |
| 175 ":libstunprober", | 173 ":libstunprober", |
| 176 ":rtc_p2p", | 174 ":rtc_p2p", |
| 177 "../system_wrappers:field_trial_default", | 175 "../system_wrappers:field_trial_default", |
| 178 ] | 176 ] |
| 179 } | 177 } |
| 180 } | 178 } |
| OLD | NEW |