blob: 3dd5e01b69fb644f0475aeb9d5ef85551d9b4ee4 [file] [log] [blame]
aleloi77ad3942016-07-04 06:33:02 -07001# 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
9config("audio_conference_mixer_config") {
aleloi5d167d62016-08-24 02:20:54 -070010 include_dirs = [ "../../modules/include" ]
aleloi77ad3942016-07-04 06:33:02 -070011}
12
13source_set("audio_mixer") {
14 sources = [
aleloi5bcc00e2016-08-15 03:01:31 -070015 "audio_frame_manipulator.cc",
16 "audio_frame_manipulator.h",
aleloi5d167d62016-08-24 02:20:54 -070017 "audio_mixer.h",
aleloi5bcc00e2016-08-15 03:01:31 -070018 "audio_mixer_defines.h",
aleloi5d167d62016-08-24 02:20:54 -070019 "audio_mixer_impl.cc",
20 "audio_mixer_impl.h",
aleloi77ad3942016-07-04 06:33:02 -070021 ]
22
aleloi44968092016-08-08 10:18:58 -070023 public = [
aleloi5bcc00e2016-08-15 03:01:31 -070024 "audio_mixer_defines.h",
aleloi5d167d62016-08-24 02:20:54 -070025 "audio_mixer.h",
aleloi44968092016-08-08 10:18:58 -070026 ]
27
aleloi77ad3942016-07-04 06:33:02 -070028 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 = [
aleloi70f866c2016-08-16 02:15:49 -070042 "../..:webrtc_common",
aleloi8b2233f2016-07-28 06:24:14 -070043 "../../base:rtc_base_approved",
aleloi77ad3942016-07-04 06:33:02 -070044 "../../modules/audio_processing",
45 "../../modules/utility",
46 "../../system_wrappers",
aleloi616df1e2016-08-24 01:17:12 -070047 "../../voice_engine:level_indicator",
aleloi77ad3942016-07-04 06:33:02 -070048 ]
49}