From 87ff9c8efa9219d6a1b2b2f827c98b08b1b5fba9 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Tue, 9 Sep 2014 23:34:56 +0000 Subject: [PATCH] Fix up configs applying to GN build. The audio_processing target didn't have the build configs applying to it which led to some logging errors. TBR=kjellander Review URL: https://webrtc-codereview.appspot.com/22339004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7125 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_processing/BUILD.gn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn index 950dfff370..9bf4da07ad 100644 --- a/webrtc/modules/audio_processing/BUILD.gn +++ b/webrtc/modules/audio_processing/BUILD.gn @@ -78,6 +78,9 @@ source_set("audio_processing") { "voice_detection_impl.h", ] + configs += [ "../..:common_config" ] + direct_dependent_configs = [ "../..:common_inherited_config" ] + defines = [] deps = []