From 1515e95329a96aa9d6e8cbc073cf4072959e6ac1 Mon Sep 17 00:00:00 2001 From: charujain Date: Wed, 2 Nov 2016 08:43:34 -0700 Subject: [PATCH] Add audio_format_conversion to deps for audio_decoder_factory_interface. This fix is made to remove the discrepancy between GYP and GN audio_decoder_factory_interface target. BUG=webrtc:6412 NOTRY=True Review-Url: https://codereview.webrtc.org/2472643003 Cr-Commit-Position: refs/heads/master@{#14894} --- webrtc/modules/audio_coding/BUILD.gn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index bbf4668627..f6188a0425 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -68,6 +68,10 @@ rtc_source_set("audio_decoder_factory_interface") { deps = [ ":audio_decoder_interface", ":audio_format", + + # TODO(charujain): Clean this dependency when downstream projects are + # updated to properly depend on audio_format_conversion target. + ":audio_format_conversion", "../../base:rtc_base_approved", ] }