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 |
11 group("p2p") { | 11 group("p2p") { |
12 public_deps = [ | 12 public_deps = [ |
| 13 ":libstunprober", |
13 ":rtc_p2p", | 14 ":rtc_p2p", |
14 ] | 15 ] |
| 16 if (!build_with_chromium) { |
| 17 # TODO(kjellander): Move this to examples or tools. |
| 18 public_deps += [ ":stun_prober" ] |
| 19 } |
15 } | 20 } |
16 | 21 |
17 config("rtc_p2p_inherited_config") { | 22 config("rtc_p2p_inherited_config") { |
18 defines = [ "FEATURE_ENABLE_VOICEMAIL" ] | 23 defines = [ "FEATURE_ENABLE_VOICEMAIL" ] |
19 } | 24 } |
20 | 25 |
21 rtc_static_library("rtc_p2p") { | 26 rtc_static_library("rtc_p2p") { |
22 sources = [ | 27 sources = [ |
23 "base/asyncstuntcpsocket.cc", | 28 "base/asyncstuntcpsocket.cc", |
24 "base/asyncstuntcpsocket.h", | 29 "base/asyncstuntcpsocket.h", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 173 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
169 } | 174 } |
170 | 175 |
171 deps = [ | 176 deps = [ |
172 ":libstunprober", | 177 ":libstunprober", |
173 ":rtc_p2p", | 178 ":rtc_p2p", |
174 "../system_wrappers:field_trial_default", | 179 "../system_wrappers:field_trial_default", |
175 ] | 180 ] |
176 } | 181 } |
177 } | 182 } |
OLD | NEW |