| Index: webrtc/p2p/BUILD.gn
|
| diff --git a/webrtc/p2p/BUILD.gn b/webrtc/p2p/BUILD.gn
|
| index 03cbd6bca0e24b8f649c51ba80f79eda7cbe1446..c196181078db0d7a91bb336a78a9a37b6f0e2c55 100644
|
| --- a/webrtc/p2p/BUILD.gn
|
| +++ b/webrtc/p2p/BUILD.gn
|
| @@ -13,10 +13,6 @@ group("p2p") {
|
| ":libstunprober",
|
| ":rtc_p2p",
|
| ]
|
| - if (!build_with_chromium) {
|
| - # TODO(kjellander): Move this to examples or tools.
|
| - public_deps += [ ":stun_prober" ]
|
| - }
|
| }
|
|
|
| config("rtc_p2p_inherited_config") {
|
| @@ -159,24 +155,3 @@ rtc_static_library("libstunprober") {
|
| "../base:rtc_base",
|
| ]
|
| }
|
| -
|
| -if (!build_with_chromium) {
|
| - # Doesn't build within Chrome on Win.
|
| - rtc_executable("stun_prober") {
|
| - sources = [
|
| - "stunprober/main.cc",
|
| - ]
|
| -
|
| - if (!build_with_chromium && is_clang) {
|
| - # Suppress warnings from Chrome's Clang plugins.
|
| - # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
| - suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
| - }
|
| -
|
| - deps = [
|
| - ":libstunprober",
|
| - ":rtc_p2p",
|
| - "../system_wrappers:field_trial_default",
|
| - ]
|
| - }
|
| -}
|
|
|