Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: webrtc/p2p/BUILD.gn

Issue 2460343002: Moving stun_prober target from webrtc/p2p to webrtc/examples (Closed)
Patch Set: Removed './' from deps path Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/examples/stunprober/main.cc ('k') | webrtc/p2p/p2p.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
- ]
- }
-}
« no previous file with comments | « webrtc/examples/stunprober/main.cc ('k') | webrtc/p2p/p2p.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698