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 | |
| 9 | config("audio_conference_mixer_config") { |
aleloi | 5d167d6 | 2016-08-24 02:20:54 -0700 | [diff] [blame] | 10 | include_dirs = [ "../../modules/include" ] |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 11 | } |
| 12 | |
| 13 | source_set("audio_mixer") { |
| 14 | sources = [ |
aleloi | 5bcc00e | 2016-08-15 03:01:31 -0700 | [diff] [blame] | 15 | "audio_frame_manipulator.cc", |
| 16 | "audio_frame_manipulator.h", |
aleloi | 5d167d6 | 2016-08-24 02:20:54 -0700 | [diff] [blame] | 17 | "audio_mixer.h", |
aleloi | 5bcc00e | 2016-08-15 03:01:31 -0700 | [diff] [blame] | 18 | "audio_mixer_defines.h", |
aleloi | 5d167d6 | 2016-08-24 02:20:54 -0700 | [diff] [blame] | 19 | "audio_mixer_impl.cc", |
| 20 | "audio_mixer_impl.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 | 5bcc00e | 2016-08-15 03:01:31 -0700 | [diff] [blame] | 24 | "audio_mixer_defines.h", |
aleloi | 5d167d6 | 2016-08-24 02:20:54 -0700 | [diff] [blame] | 25 | "audio_mixer.h", |
aleloi | 4496809 | 2016-08-08 10:18:58 -0700 | [diff] [blame] | 26 | ] |
| 27 | |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 28 | configs += [ "../..:common_config" ] |
| 29 | |
| 30 | public_configs = [ |
| 31 | "../..:common_inherited_config", |
| 32 | ":audio_conference_mixer_config", |
| 33 | ] |
| 34 | |
| 35 | if (is_clang) { |
| 36 | # Suppress warnings from Chrome's Clang plugins. |
| 37 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 38 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 39 | } |
| 40 | |
| 41 | deps = [ |
aleloi | 70f866c | 2016-08-16 02:15:49 -0700 | [diff] [blame] | 42 | "../..:webrtc_common", |
aleloi | 8b2233f | 2016-07-28 06:24:14 -0700 | [diff] [blame] | 43 | "../../base:rtc_base_approved", |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 44 | "../../modules/audio_processing", |
| 45 | "../../modules/utility", |
| 46 | "../../system_wrappers", |
aleloi | 616df1e | 2016-08-24 01:17:12 -0700 | [diff] [blame] | 47 | "../../voice_engine:level_indicator", |
aleloi | 77ad394 | 2016-07-04 06:33:02 -0700 | [diff] [blame] | 48 | ] |
| 49 | } |