Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 1 | # Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license |
| 4 | # that can be found in the LICENSE file in the root of the source |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
| 9 | import("../../webrtc.gni") |
| 10 | |
| 11 | rtc_source_set("audio_frame_api") { |
| 12 | visibility = [ "*" ] |
| 13 | sources = [ |
| 14 | "audio_frame.cc", |
| 15 | "audio_frame.h", |
| 16 | ] |
| 17 | |
| 18 | deps = [ |
| 19 | "../../:typedefs", |
| 20 | "../../rtc_base:checks", |
| 21 | "../../rtc_base:deprecation", |
| 22 | "../../rtc_base:rtc_base_approved", |
| 23 | ] |
| 24 | } |
| 25 | |
| 26 | rtc_source_set("audio_mixer_api") { |
| 27 | visibility = [ "*" ] |
| 28 | sources = [ |
| 29 | "audio_mixer.h", |
| 30 | ] |
| 31 | |
| 32 | deps = [ |
| 33 | ":audio_frame_api", |
| 34 | "../../rtc_base:rtc_base_approved", |
| 35 | ] |
| 36 | } |
| 37 | |
| 38 | rtc_source_set("aec3_config") { |
| 39 | visibility = [ "*" ] |
| 40 | sources = [ |
Per Ã…hgren | b6b00dc | 2018-02-20 22:18:27 +0100 | [diff] [blame] | 41 | "echo_canceller3_config.cc", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 42 | "echo_canceller3_config.h", |
| 43 | ] |
| 44 | } |
| 45 | |
| 46 | rtc_source_set("aec3_factory") { |
| 47 | visibility = [ "*" ] |
Gustaf Ullberg | 0efa941 | 2018-02-27 13:58:45 +0100 | [diff] [blame^] | 48 | configs += [ "../../modules/audio_processing:apm_debug_dump" ] |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 49 | sources = [ |
| 50 | "echo_canceller3_factory.cc", |
| 51 | "echo_canceller3_factory.h", |
| 52 | ] |
| 53 | |
| 54 | deps = [ |
| 55 | ":aec3_config", |
| 56 | ":echo_control", |
Gustaf Ullberg | f35c666 | 2018-02-23 13:18:29 +0100 | [diff] [blame] | 57 | "../../modules/audio_processing/aec3", |
Gustaf Ullberg | 0efa941 | 2018-02-27 13:58:45 +0100 | [diff] [blame^] | 58 | "../../rtc_base:rtc_base_approved", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 59 | ] |
| 60 | } |
| 61 | |
| 62 | rtc_source_set("echo_control") { |
| 63 | visibility = [ "*" ] |
| 64 | sources = [ |
| 65 | "echo_control.h", |
| 66 | ] |
| 67 | } |