OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 config("audio_conference_mixer_config") { | 9 config("audio_conference_mixer_config") { |
10 include_dirs = [ "../../modules/include" ] | 10 include_dirs = [ "../../modules/include" ] |
11 } | 11 } |
12 | 12 |
13 source_set("audio_mixer") { | 13 source_set("audio_mixer") { |
14 sources = [ | 14 sources = [ |
15 "audio_frame_manipulator.cc", | 15 "audio_frame_manipulator.cc", |
16 "audio_frame_manipulator.h", | 16 "audio_frame_manipulator.h", |
17 "audio_mixer.h", | 17 "audio_mixer.h", |
| 18 "audio_mixer_defines.cc", |
18 "audio_mixer_defines.h", | 19 "audio_mixer_defines.h", |
19 "audio_mixer_impl.cc", | 20 "audio_mixer_impl.cc", |
20 "audio_mixer_impl.h", | 21 "audio_mixer_impl.h", |
21 ] | 22 ] |
22 | 23 |
23 public = [ | 24 public = [ |
24 "audio_mixer_defines.h", | 25 "audio_mixer_defines.h", |
25 "audio_mixer.h", | 26 "audio_mixer.h", |
26 ] | 27 ] |
27 | 28 |
28 configs += [ "../..:common_config" ] | 29 configs += [ "../..:common_config" ] |
29 | 30 |
30 public_configs = [ | 31 public_configs = [ |
31 "../..:common_inherited_config", | 32 "../..:common_inherited_config", |
32 ":audio_conference_mixer_config", | 33 ":audio_conference_mixer_config", |
33 ] | 34 ] |
34 | 35 |
35 deps = [ | 36 deps = [ |
36 "../..:webrtc_common", | 37 "../..:webrtc_common", |
37 "../../base:rtc_base_approved", | 38 "../../base:rtc_base_approved", |
38 "../../modules/audio_processing", | 39 "../../modules/audio_processing", |
39 "../../modules/utility", | 40 "../../modules/utility", |
40 "../../system_wrappers", | 41 "../../system_wrappers", |
41 "../../voice_engine:level_indicator", | 42 "../../voice_engine:level_indicator", |
42 ] | 43 ] |
43 } | 44 } |
OLD | NEW |