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

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

Issue 2178353002: GN migration of target audio_coding/neteq/neteq_test_tools (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
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 1b0ceb0b4a1387c1f5b15e62afa2593ae8868ef3..206200095464f50a8c6d5ca5201f8899a08aa7d4 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -1084,4 +1084,38 @@ if (rtc_include_tests) {
deps += [ ":rtc_event_log_source" ]
}
}
+
+ source_set("neteq_test_tools") {
+ testonly = true
+ sources = [
+ "neteq/test/NETEQTEST_DummyRTPpacket.cc",
+ "neteq/test/NETEQTEST_DummyRTPpacket.h",
+ "neteq/test/NETEQTEST_RTPpacket.cc",
+ "neteq/test/NETEQTEST_RTPpacket.h",
+ ]
+
+ deps = [
+ ":cng",
+ ":g711",
+ ":g722",
+ ":ilbc",
+ ":isac",
+ ":pcm16b",
+ "../..:webrtc_common",
+ "//testing/gtest",
+ ]
+
+ include_dirs = [
+ "neteq/include",
+ "neteq/test",
+ "../../",
+ ]
+
+ if (is_win) {
+ cflags = [
+ # Disable warnings to enable Win64 build, issue 1323.
+ "/wd4267", # size_t to int truncation
+ ]
+ }
+ }
}
« 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