diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index c388fe767b..3e292e31ad 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -1416,4 +1416,16 @@ if (rtc_include_tests) { "//third_party/gflags", ] } + + executable("audio_classifier_test") { + testonly = true + sources = [ + "neteq/test/audio_classifier_test.cc", + ] + deps = [ + ":neteq", + ":webrtc_opus", + "../../system_wrappers:system_wrappers_default", + ] + } } diff --git a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi index 758700c18f..e5ead384ef 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi +++ b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi @@ -145,6 +145,7 @@ 'dependencies': [ 'neteq', 'webrtc_opus', + '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default', ], 'sources': [ 'test/audio_classifier_test.cc',