aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 1 | # Copyright (c) 2014 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 | |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 9 | import("../../build/webrtc.gni") |
| 10 | |
aleloi | 201dfe9 | 2016-10-20 05:06:39 -0700 | [diff] [blame^] | 11 | rtc_static_library("audio_mixer_impl") { |
| 12 | visibility = [ |
| 13 | "../../audio:audio", |
| 14 | "../../modules/*", |
| 15 | ] |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 16 | sources = [ |
aleloi | 5d167d6 | 2016-08-24 02:20:54 -0700 | [diff] [blame] | 17 | "audio_mixer_impl.cc", |
| 18 | "audio_mixer_impl.h", |
aleloi | 3654251 | 2016-10-07 05:28:32 -0700 | [diff] [blame] | 19 | "audio_source_with_mix_status.cc", |
| 20 | "audio_source_with_mix_status.h", |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 21 | ] |
| 22 | |
aleloi | 4496809 | 2016-08-08 10:18:58 -0700 | [diff] [blame] | 23 | public = [ |
aleloi | 201dfe9 | 2016-10-20 05:06:39 -0700 | [diff] [blame^] | 24 | "audio_mixer_impl.h", |
aleloi | 4496809 | 2016-08-08 10:18:58 -0700 | [diff] [blame] | 25 | ] |
| 26 | |
aleloi | 201dfe9 | 2016-10-20 05:06:39 -0700 | [diff] [blame^] | 27 | public_deps = [ |
| 28 | "../../api:audio_mixer_api", |
| 29 | ] |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 30 | |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 31 | deps = [ |
aleloi | 201dfe9 | 2016-10-20 05:06:39 -0700 | [diff] [blame^] | 32 | ":audio_frame_manipulator", |
aleloi | 70f866c | 2016-08-16 02:15:49 -0700 | [diff] [blame] | 33 | "../..:webrtc_common", |
aleloi | 8b2233f | 2016-07-28 06:24:14 -0700 | [diff] [blame] | 34 | "../../base:rtc_base_approved", |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 35 | "../../modules/audio_processing", |
| 36 | "../../modules/utility", |
| 37 | "../../system_wrappers", |
aleloi | 201dfe9 | 2016-10-20 05:06:39 -0700 | [diff] [blame^] | 38 | ] |
| 39 | } |
| 40 | |
| 41 | rtc_static_library("audio_frame_manipulator") { |
| 42 | visibility = [ |
| 43 | ":*", |
| 44 | "../../modules:*", |
| 45 | ] |
| 46 | |
| 47 | sources = [ |
| 48 | "audio_frame_manipulator.cc", |
| 49 | "audio_frame_manipulator.h", |
| 50 | ] |
| 51 | |
| 52 | deps = [ |
| 53 | "../../base:rtc_base_approved", |
| 54 | "../../modules/utility", |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 55 | ] |
| 56 | } |