| 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
|
| + ]
|
| + }
|
| + }
|
| }
|
|
|