| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "client/basicportallocator.cc", | 76 "client/basicportallocator.cc", |
| 77 "client/basicportallocator.h", | 77 "client/basicportallocator.h", |
| 78 "client/socketmonitor.cc", | 78 "client/socketmonitor.cc", |
| 79 "client/socketmonitor.h", | 79 "client/socketmonitor.h", |
| 80 ] | 80 ] |
| 81 | 81 |
| 82 defines = [ "FEATURE_ENABLE_SSL" ] | 82 defines = [ "FEATURE_ENABLE_SSL" ] |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 "../base:rtc_base", | 85 "../base:rtc_base", |
| 86 "../libjingle/xmllite", | |
| 87 ] | 86 ] |
| 88 | 87 |
| 89 if (rtc_build_expat) { | 88 if (rtc_build_expat) { |
| 90 deps += [ "//third_party/expat" ] | 89 deps += [ "//third_party/expat" ] |
| 91 public_deps = [ | 90 public_deps = [ |
| 92 "//third_party/expat", | 91 "//third_party/expat", |
| 93 ] | 92 ] |
| 94 } | 93 } |
| 95 | 94 |
| 96 public_configs = [ ":rtc_p2p_inherited_config" ] | 95 public_configs = [ ":rtc_p2p_inherited_config" ] |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 168 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 170 } | 169 } |
| 171 | 170 |
| 172 deps = [ | 171 deps = [ |
| 173 ":libstunprober", | 172 ":libstunprober", |
| 174 ":rtc_p2p", | 173 ":rtc_p2p", |
| 175 "../system_wrappers:field_trial_default", | 174 "../system_wrappers:field_trial_default", |
| 176 ] | 175 ] |
| 177 } | 176 } |
| 178 } | 177 } |
| OLD | NEW |