blob: b22eb9552585f5f1e9c12c51bdb3e33ef337631a [file] [log] [blame]
kwiberg327af332017-08-18 04:09:40 -07001# 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
9import("../../../webrtc.gni")
10if (is_android) {
11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni")
13}
14
15rtc_static_library("audio_encoder_isac_fix") {
16 sources = [
17 "audio_encoder_isac_fix.cc",
18 "audio_encoder_isac_fix.h",
19 ]
20 deps = [
21 "..:audio_codecs_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070022 "../..:optional",
kwiberg327af332017-08-18 04:09:40 -070023 "../../..:webrtc_common",
24 "../../../modules/audio_coding:isac_fix",
25 "../../../rtc_base:rtc_base_approved",
26 ]
27}
28
29rtc_static_library("audio_decoder_isac_fix") {
30 sources = [
31 "audio_decoder_isac_fix.cc",
32 "audio_decoder_isac_fix.h",
33 ]
34 deps = [
35 "..:audio_codecs_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070036 "../..:optional",
kwiberg327af332017-08-18 04:09:40 -070037 "../../..:webrtc_common",
38 "../../../modules/audio_coding:isac_fix",
39 "../../../rtc_base:rtc_base_approved",
40 ]
41}
kwiberge57556c2017-08-21 06:11:18 -070042
43rtc_static_library("audio_encoder_isac_float") {
44 sources = [
45 "audio_encoder_isac_float.cc",
46 "audio_encoder_isac_float.h",
47 ]
48 deps = [
49 "..:audio_codecs_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070050 "../..:optional",
kwiberge57556c2017-08-21 06:11:18 -070051 "../../..:webrtc_common",
52 "../../../modules/audio_coding:isac",
53 "../../../rtc_base:rtc_base_approved",
54 ]
55}
56
57rtc_static_library("audio_decoder_isac_float") {
58 sources = [
59 "audio_decoder_isac_float.cc",
60 "audio_decoder_isac_float.h",
61 ]
62 deps = [
63 "..:audio_codecs_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070064 "../..:optional",
kwiberge57556c2017-08-21 06:11:18 -070065 "../../..:webrtc_common",
66 "../../../modules/audio_coding:isac",
67 "../../../rtc_base:rtc_base_approved",
68 ]
69}