From 53cec04f5ce7cdd18648968cedf1628e535f4e83 Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Fri, 9 Sep 2016 05:32:14 -0700 Subject: [PATCH] GN: Move audio_coding to public_deps in voice engine audio_coding should be in public_deps, in order to a define used by voe_output_test.ccto be exported, as is done in GYP NOTRY=True BUG=webrtc:5949 Review-Url: https://codereview.webrtc.org/2321783003 Cr-Commit-Position: refs/heads/master@{#14161} --- webrtc/voice_engine/BUILD.gn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webrtc/voice_engine/BUILD.gn b/webrtc/voice_engine/BUILD.gn index 54b7ae7b1b..e773ebd049 100644 --- a/webrtc/voice_engine/BUILD.gn +++ b/webrtc/voice_engine/BUILD.gn @@ -84,6 +84,9 @@ rtc_source_set("voice_engine") { suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] } + public_deps = [ + "../modules/audio_coding", + ] deps = [ ":level_indicator", "..:rtc_event_log", @@ -91,7 +94,6 @@ rtc_source_set("voice_engine") { "../api:call_api", "../base:rtc_base_approved", "../common_audio", - "../modules/audio_coding", "../modules/audio_conference_mixer", "../modules/audio_device", "../modules/audio_processing",