BUILD.gn (1069B)
1 # Copyright (c) 2020 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 import("../../webrtc.gni") 10 11 rtc_library("async_audio_processing") { 12 sources = [ 13 "async_audio_processing.cc", 14 "async_audio_processing.h", 15 ] 16 17 deps = [ 18 "../../api:ref_count", 19 "../../api:scoped_refptr", 20 "../../api:sequence_checker", 21 "../../api/audio:audio_frame_api", 22 "../../api/audio:audio_frame_processor", 23 "../../api/task_queue", 24 "../../rtc_base:checks", 25 "../../rtc_base:refcount", 26 ] 27 } 28 29 if (rtc_include_tests) { 30 rtc_library("async_audio_processing_test") { 31 testonly = true 32 33 sources = [] 34 35 deps = [ 36 ":async_audio_processing", 37 "../../api/audio:audio_frame_api", 38 "../../rtc_base:checks", 39 ] 40 } 41 }