Index: webrtc/modules/audio_coding/BUILD.gn |
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn |
index 206200095464f50a8c6d5ca5201f8899a08aa7d4..f30caf8037d01dda4d324cb6ffa845b7fa1ebc7f 100644 |
--- a/webrtc/modules/audio_coding/BUILD.gn |
+++ b/webrtc/modules/audio_coding/BUILD.gn |
@@ -1118,4 +1118,27 @@ if (rtc_include_tests) { |
] |
} |
} |
+ |
+ executable("rtp_analyze") { |
+ testonly = true |
+ |
+ sources = [ |
+ "neteq/tools/rtp_analyze.cc", |
+ ] |
+ |
+ deps = [ |
minyue-webrtc
2016/07/26 12:23:35
are these all needed?
aleloi
2016/07/26 12:34:51
All but neteq and pcm16b are copied from the corre
minyue-webrtc
2016/07/26 12:44:13
I see, "neteq_unittest_tools" does not depend on "
|
+ ":neteq", |
+ ":neteq_unittest_tools", |
+ ":pcm16b", |
+ "../../system_wrappers:system_wrappers_default", |
+ "//testing/gtest", |
+ "//third_party/gflags:gflags", |
+ ] |
+ |
+ if (is_clang) { |
+ # Suppress warnings from Chrome's Clang plugins. |
+ # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
+ configs -= [ "//build/config/clang:find_bad_constructs" ] |
+ } |
+ } |
} |