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 = [ |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 19 | "../../rtc_base:checks", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 20 | "../../rtc_base:rtc_base_approved", |
| 21 | ] |
| 22 | } |
| 23 | |
| 24 | rtc_source_set("audio_mixer_api") { |
| 25 | visibility = [ "*" ] |
| 26 | sources = [ |
| 27 | "audio_mixer.h", |
| 28 | ] |
| 29 | |
| 30 | deps = [ |
| 31 | ":audio_frame_api", |
| 32 | "../../rtc_base:rtc_base_approved", |
| 33 | ] |
| 34 | } |
| 35 | |
| 36 | rtc_source_set("aec3_config") { |
| 37 | visibility = [ "*" ] |
| 38 | sources = [ |
Per Ã…hgren | b6b00dc | 2018-02-20 22:18:27 +0100 | [diff] [blame] | 39 | "echo_canceller3_config.cc", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 40 | "echo_canceller3_config.h", |
| 41 | ] |
Sam Zackrisson | a4c8514 | 2018-10-10 10:44:43 +0200 | [diff] [blame] | 42 | deps = [ |
| 43 | "../../rtc_base:rtc_base_approved", |
| 44 | "../../rtc_base:safe_minmax", |
| 45 | ] |
| 46 | } |
| 47 | |
| 48 | rtc_source_set("aec3_config_json") { |
| 49 | visibility = [ "*" ] |
| 50 | sources = [ |
| 51 | "echo_canceller3_config_json.cc", |
| 52 | "echo_canceller3_config_json.h", |
| 53 | ] |
| 54 | deps = [ |
| 55 | ":aec3_config", |
| 56 | "../../rtc_base:rtc_base_approved", |
| 57 | "../../rtc_base:rtc_json", |
| 58 | "//third_party/abseil-cpp/absl/strings:strings", |
| 59 | ] |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | rtc_source_set("aec3_factory") { |
| 63 | visibility = [ "*" ] |
Gustaf Ullberg | 0efa941 | 2018-02-27 13:58:45 +0100 | [diff] [blame] | 64 | configs += [ "../../modules/audio_processing:apm_debug_dump" ] |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 65 | sources = [ |
| 66 | "echo_canceller3_factory.cc", |
| 67 | "echo_canceller3_factory.h", |
| 68 | ] |
| 69 | |
| 70 | deps = [ |
| 71 | ":aec3_config", |
| 72 | ":echo_control", |
Gustaf Ullberg | f35c666 | 2018-02-23 13:18:29 +0100 | [diff] [blame] | 73 | "../../modules/audio_processing/aec3", |
Gustaf Ullberg | 0efa941 | 2018-02-27 13:58:45 +0100 | [diff] [blame] | 74 | "../../rtc_base:rtc_base_approved", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 75 | "//third_party/abseil-cpp/absl/memory", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 76 | ] |
| 77 | } |
| 78 | |
| 79 | rtc_source_set("echo_control") { |
| 80 | visibility = [ "*" ] |
| 81 | sources = [ |
| 82 | "echo_control.h", |
| 83 | ] |
| 84 | } |