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

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

Issue 2081113003: GN: Add neteq_rtpplay and rtc_event_log_source (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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 fd8649575e3e128440af2bad97f38176be5d161b..c3dd9ab8c24fdb3896dfb0d5f3361783c327d207 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -945,6 +945,56 @@ if (rtc_include_tests) {
]
proto_out_dir = "webrtc/audio_coding/neteq"
}
+
+ source_set("rtc_event_log_source") {
+ testonly = true
+ sources = [
+ "neteq/tools/rtc_event_log_source.cc",
+ "neteq/tools/rtc_event_log_source.h",
+ ]
+
+ if (is_clang) {
+ # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163).
kjellander_webrtc 2016/06/21 11:21:47 nit: max 80 chars.
hlundin-webrtc 2016/06/21 11:55:03 Done.
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+
+ deps = [
+ "../../:rtc_event_log_parser",
+ ]
+ public_deps = [
+ "../../:rtc_event_log_proto",
+ ]
+ }
+
+ test("neteq_rtpplay") {
+ testonly = true
+ defines = []
+ deps = []
+ sources = [
+ "neteq/tools/neteq_rtpplay.cc",
+ ]
+
+ if (is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
kjellander_webrtc 2016/06/21 11:21:47 nit: max 80 chars.
hlundin-webrtc 2016/06/21 11:55:03 Done.
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+
+ if (is_win) {
+ cflags = [
+ # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
+ "/wd4373", # virtual function override.
+ ]
+ }
+
+ deps += [
+ ":neteq",
+ ":neteq_unittest_tools",
+ ":rtc_event_log_source",
+ "../../system_wrappers:system_wrappers_default",
+ "../../test:test_support",
+ "//third_party/gflags",
+ ]
+ }
}
source_set("neteq_test_support") {
« 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