| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "base/stunserver.cc", | 105 "base/stunserver.cc", |
| 106 "base/stunserver.h", | 106 "base/stunserver.h", |
| 107 "base/turnserver.cc", | 107 "base/turnserver.cc", |
| 108 "base/turnserver.h", | 108 "base/turnserver.h", |
| 109 ] | 109 ] |
| 110 defines += [ | 110 defines += [ |
| 111 "FEATURE_ENABLE_VOICEMAIL", | 111 "FEATURE_ENABLE_VOICEMAIL", |
| 112 "FEATURE_ENABLE_PSTN", | 112 "FEATURE_ENABLE_PSTN", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 if (is_clang) { | 115 if (!build_with_chromium && is_clang) { |
| 116 # Suppress warnings from Chrome's Clang plugins. | 116 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 117 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 118 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 117 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 119 } | 118 } |
| 120 } | 119 } |
| 121 | 120 |
| 122 if (rtc_use_quic) { | 121 if (rtc_use_quic) { |
| 123 deps = [ | 122 deps = [ |
| 124 "//third_party/libquic", | 123 "//third_party/libquic", |
| 125 ] | 124 ] |
| 126 sources += [ | 125 sources += [ |
| 127 "quic/quicconnectionhelper.cc", | 126 "quic/quicconnectionhelper.cc", |
| (...skipping 41 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 |