BUILD.gn (1501B)
1 # Copyright (c) 2017 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 if (is_android) { 11 import("//chromium/build/config/android/config.gni") 12 import("//chromium/build/config/android/rules.gni") 13 } 14 15 rtc_library("audio_encoder_L16") { 16 visibility = [ "*" ] 17 poisonous = [ "audio_codecs" ] 18 sources = [ 19 "audio_encoder_L16.cc", 20 "audio_encoder_L16.h", 21 ] 22 deps = [ 23 "..:audio_codecs_api", 24 "../../../api:field_trials_view", 25 "../../../modules/audio_coding:pcm16b", 26 "../../../rtc_base:checks", 27 "../../../rtc_base:safe_conversions", 28 "../../../rtc_base:safe_minmax", 29 "../../../rtc_base:stringutils", 30 "../../../rtc_base/system:rtc_export", 31 "//third_party/abseil-cpp/absl/strings", 32 ] 33 } 34 35 rtc_library("audio_decoder_L16") { 36 visibility = [ "*" ] 37 poisonous = [ "audio_codecs" ] 38 sources = [ 39 "audio_decoder_L16.cc", 40 "audio_decoder_L16.h", 41 ] 42 deps = [ 43 "..:audio_codecs_api", 44 "../../../api:field_trials_view", 45 "../../../modules/audio_coding:pcm16b", 46 "../../../rtc_base:safe_conversions", 47 "../../../rtc_base/system:rtc_export", 48 "//third_party/abseil-cpp/absl/strings", 49 ] 50 }