From 47bded4428ddc49ab75c5697e0b71cf7564e7e83 Mon Sep 17 00:00:00 2001 From: aleloi Date: Tue, 26 Jul 2016 06:46:19 -0700 Subject: [PATCH] GN migration of target audio_coding/neteq/rtp_analyze. Review-Url: https://codereview.webrtc.org/2185533003 Cr-Commit-Position: refs/heads/master@{#13533} --- webrtc/modules/audio_coding/BUILD.gn | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index 2062000954..f30caf8037 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 = [ + ":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" ] + } + } }