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

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

Issue 2247233002: Migrated GN target :isac_fix_test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Surpressed win error, added target to .gn Created 4 years, 4 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 | « .gn ('k') | 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 ed200cb7c47b8e2c60a1bca4c28c6bcdfd08e335..05a2ca30a51f456bb12ce3c6a178bbb1b83ccb78 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -1479,4 +1479,24 @@ if (rtc_include_tests) {
"//third_party/gflags",
]
}
+
+ executable("isac_fix_test") {
+ testonly = true
+
+ sources = [
+ "codecs/isac/fix/test/kenny.cc",
+ ]
+
+ deps = [
+ ":isac_fix",
+ "../../test:test_support",
+ ]
+
+ if (is_win) {
+ cflags = [
+ # Disable warnings to enable Win64 build, issue 1323.
+ "/wd4267", # size_t to int truncation
+ ]
+ }
+ }
}
« no previous file with comments | « .gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698