GN migration of target audio_coding/neteq/rtp_analyze.

Review-Url: https://codereview.webrtc.org/2185533003
Cr-Commit-Position: refs/heads/master@{#13533}
This commit is contained in:
aleloi
2016-07-26 06:46:19 -07:00
committed by Commit bot
parent 2874ed5709
commit 47bded4428

View File

@ -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" ]
}
}
}