1 // Copyright (c) 2011 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 cc_library_static { 10 name: "libwebrtc_resampler", 11 defaults: ["webrtc_flags"], 12 13 arch: { 14 x86: { 15 srcs: ["sinc_resampler_sse.cc"], 16 }, 17 x86_64: { 18 srcs: ["sinc_resampler_sse.cc"], 19 }, 20 }, 21 22 srcs: [ 23 "push_sinc_resampler.cc", 24 "resampler.cc", 25 "sinc_resampler.cc", 26 ], 27 28 local_include_dirs: ["include"], 29 static_libs: ["libwebrtc_spl"], 30 } 31 32 filegroup { 33 name: "webrtc_common_audio_resampler_push_resampler", 34 srcs: ["push_resampler.cc"], 35 } 36