From 7dbb7c311f00584051630930990fe397c3026df9 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Fri, 16 Nov 2018 11:13:32 +0100 Subject: [PATCH] Adding missing build target for audio_device_default. The header modules/audio_device/include/audio_device_default.h was not owned by any build target. Bug: webrtc:8946 Change-Id: I3266a613c10963688c3bea701384e1d1bb68daac Reviewed-on: https://webrtc-review.googlesource.com/c/111201 Commit-Queue: Mirko Bonadei Reviewed-by: Henrik Andreassson Reviewed-by: Karl Wiberg Cr-Commit-Position: refs/heads/master@{#25669} --- modules/audio_device/BUILD.gn | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/audio_device/BUILD.gn b/modules/audio_device/BUILD.gn index b690050981..a44c41d6b7 100644 --- a/modules/audio_device/BUILD.gn +++ b/modules/audio_device/BUILD.gn @@ -24,6 +24,16 @@ config("audio_device_warnings_config") { } } +rtc_source_set("audio_device_default") { + visibility = [ "*" ] + sources = [ + "include/audio_device_default.h", + ] + deps = [ + ":audio_device_api", + ] +} + rtc_source_set("audio_device") { visibility = [ "*" ] public_deps = [ @@ -203,6 +213,7 @@ rtc_source_set("audio_device_impl") { deps = [ ":audio_device_api", ":audio_device_buffer", + ":audio_device_default", ":audio_device_generic", "../..:webrtc_common", "../../api:array_view",