Migrated GN target :g722_test

Migrated GN target :g722_test from
webrtc/modules/audio_coding/codecs/g722/g722.gypi

NOTRY=True

BUG=webrtc:6191

Review-Url: https://codereview.webrtc.org/2275463002
Cr-Commit-Position: refs/heads/master@{#13865}
This commit is contained in:
aleloi 2016-08-23 08:36:10 -07:00 committed by Commit bot
parent 16f55a10c4
commit 9a11784a7f
3 changed files with 18 additions and 0 deletions

1
.gn
View File

@ -25,6 +25,7 @@ check_targets = [
"//webrtc/modules/audio_coding:isac_fix_test",
"//webrtc/modules/audio_mixer:audio_conference_mixer",
"//webrtc/modules/audio_coding:g711_test",
"//webrtc/modules/audio_coding:g722_test",
]
# These are the list of GN files that run exec_script. This whitelist exists

View File

@ -1554,4 +1554,20 @@ if (rtc_include_tests) {
":g711",
]
}
executable("g722_test") {
testonly = true
sources = [
"codecs/g722/test/testG722.cc",
]
configs += [ "../..:common_config" ]
public_configs = [ "../..:common_inherited_config" ]
deps = [
":g722",
"../..:webrtc_common",
]
}
}

View File

@ -34,6 +34,7 @@
'type': 'executable',
'dependencies': [
'g722',
'<(webrtc_root)/common.gyp:webrtc_common'
],
'sources': [
'test/testG722.cc',