Migrated GN target :isac_fix_test

Migrated GN target :isac_fix_test from
webrtc/modules/audio_coding/codecs/isac/isacfix_test.gypi

NOTRY=True

BUG=webrtc:6191

Review-Url: https://codereview.webrtc.org/2247233002
Cr-Commit-Position: refs/heads/master@{#13770}
This commit is contained in:
aleloi
2016-08-16 01:47:16 -07:00
committed by Commit bot
parent b24b1ceb48
commit b7186d0aa7
2 changed files with 24 additions and 1 deletions

View File

@ -1483,4 +1483,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
]
}
}
}