From 6c46eaa5441efaad518bde18d4313ea7cb28e2d9 Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Mon, 22 Aug 2016 09:48:02 -0700 Subject: [PATCH] Add gtest as a dependency for neteq_quality_test_support. Was removed in Patch Set 5 of https://codereview.webrtc.org/2252413002 but shouldn't have been, since it's actually required. https://cs.chromium.org/chromium/src/third_party/webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.h?l=17 BUG=webrtc:6228 NOTRY=True Review-Url: https://codereview.webrtc.org/2262173003 Cr-Commit-Position: refs/heads/master@{#13851} --- webrtc/modules/audio_coding/BUILD.gn | 1 + webrtc/modules/audio_coding/neteq/neteq_tests.gypi | 1 + 2 files changed, 2 insertions(+) diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index 7556bf1f91..96dbd5b040 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -1181,6 +1181,7 @@ if (rtc_include_tests) { deps = [ ":neteq", ":neteq_unittest_tools", + "//testing/gtest", "//third_party/gflags", ] } diff --git a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi index 5086d0f5e4..b37eb51930 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi +++ b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi @@ -174,6 +174,7 @@ 'target_name': 'neteq_quality_test_support', 'type': 'static_library', 'dependencies': [ + '<(DEPTH)/testing/gtest.gyp:gtest', '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 'neteq', 'neteq_unittest_tools',