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

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2185533003: GN migration of target audio_coding/neteq/rtp_analyze. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@rtp_analyze_gn
Patch Set: Created 4 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
+ }
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698