| 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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "audio_mixer_impl.h", | 25 "audio_mixer_impl.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 "../../api:audio_mixer_api", | 29 "../../api:audio_mixer_api", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":audio_frame_manipulator", | 33 ":audio_frame_manipulator", |
| 34 "../..:webrtc_common", | 34 "../..:webrtc_common", |
| 35 "../../audio/utility:audio_frame_operations", |
| 35 "../../base:rtc_base_approved", | 36 "../../base:rtc_base_approved", |
| 36 "../../modules/audio_processing", | |
| 37 "../../modules/utility", | |
| 38 "../../system_wrappers", | 37 "../../system_wrappers", |
| 38 "../audio_processing", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 rtc_static_library("audio_frame_manipulator") { | 42 rtc_static_library("audio_frame_manipulator") { |
| 43 visibility = [ | 43 visibility = [ |
| 44 ":*", | 44 ":*", |
| 45 "../../modules:*", | 45 "../../modules:*", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 sources = [ | 48 sources = [ |
| 49 "audio_frame_manipulator.cc", | 49 "audio_frame_manipulator.cc", |
| 50 "audio_frame_manipulator.h", | 50 "audio_frame_manipulator.h", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 "../../audio/utility", |
| 54 "../../base:rtc_base_approved", | 55 "../../base:rtc_base_approved", |
| 55 "../../modules/utility", | |
| 56 ] | 56 ] |
| 57 } | 57 } |
| OLD | NEW |