From 6391012514b1f9f268cfeb9ca2069203f2d49378 Mon Sep 17 00:00:00 2001 From: aleloi Date: Wed, 10 Aug 2016 04:41:14 -0700 Subject: [PATCH] Migrated GN target :audio_classifier_test Migrated GN target :audio_classifier_test from webrtc/modules/audio_coding/neteq/neteq_tests.gypi NOTRY=True BUG=webrtc:6190 Review-Url: https://codereview.webrtc.org/2225333002 Cr-Commit-Position: refs/heads/master@{#13706} --- webrtc/modules/audio_coding/BUILD.gn | 12 ++++++++++++ webrtc/modules/audio_coding/neteq/neteq_tests.gypi | 1 + 2 files changed, 13 insertions(+) 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',