blob: 41aaab0601e20aa14061bbee51777bb184fd9f01 [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
ehmaldonado38a21322016-09-02 04:10:34 -07009import("../../build/webrtc.gni")
10
aleloi201dfe92016-10-20 05:06:39 -070011rtc_static_library("audio_mixer_impl") {
12 visibility = [
13 "../../audio:audio",
14 "../../modules/*",
15 ]
aleloi77ad3942016-07-04 06:33:02 -070016 sources = [
aleloi5d167d62016-08-24 02:20:54 -070017 "audio_mixer_impl.cc",
18 "audio_mixer_impl.h",
aleloi77ad3942016-07-04 06:33:02 -070019 ]
20
aleloi44968092016-08-08 10:18:58 -070021 public = [
aleloi201dfe92016-10-20 05:06:39 -070022 "audio_mixer_impl.h",
aleloi44968092016-08-08 10:18:58 -070023 ]
24
aleloi201dfe92016-10-20 05:06:39 -070025 public_deps = [
26 "../../api:audio_mixer_api",
27 ]
aleloi77ad3942016-07-04 06:33:02 -070028
aleloi77ad3942016-07-04 06:33:02 -070029 deps = [
aleloi201dfe92016-10-20 05:06:39 -070030 ":audio_frame_manipulator",
aleloi70f866c2016-08-16 02:15:49 -070031 "../..:webrtc_common",
aleloi8b2233f2016-07-28 06:24:14 -070032 "../../base:rtc_base_approved",
aleloi77ad3942016-07-04 06:33:02 -070033 "../../modules/audio_processing",
34 "../../modules/utility",
35 "../../system_wrappers",
aleloi201dfe92016-10-20 05:06:39 -070036 ]
37}
38
39rtc_static_library("audio_frame_manipulator") {
40 visibility = [
41 ":*",
42 "../../modules:*",
43 ]
44
45 sources = [
46 "audio_frame_manipulator.cc",
47 "audio_frame_manipulator.h",
48 ]
49
50 deps = [
51 "../../base:rtc_base_approved",
52 "../../modules/utility",
aleloi77ad3942016-07-04 06:33:02 -070053 ]
54}