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/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 194 |
195 config("g722_config") { | 195 config("g722_config") { |
196 include_dirs = [ | 196 include_dirs = [ |
197 "../../..", | 197 "../../..", |
198 "codecs/g722/include", | 198 "codecs/g722/include", |
199 ] | 199 ] |
200 } | 200 } |
201 | 201 |
202 source_set("g722") { | 202 source_set("g722") { |
203 sources = [ | 203 sources = [ |
| 204 "codecs/g722/audio_decoder_g722.cc", |
204 "codecs/g722/audio_encoder_g722.cc", | 205 "codecs/g722/audio_encoder_g722.cc", |
205 "codecs/g722/g722_decode.c", | 206 "codecs/g722/g722_decode.c", |
206 "codecs/g722/g722_enc_dec.h", | 207 "codecs/g722/g722_enc_dec.h", |
207 "codecs/g722/g722_encode.c", | 208 "codecs/g722/g722_encode.c", |
208 "codecs/g722/g722_interface.c", | 209 "codecs/g722/g722_interface.c", |
| 210 "codecs/g722/include/audio_decoder_g722.h", |
209 "codecs/g722/include/audio_encoder_g722.h", | 211 "codecs/g722/include/audio_encoder_g722.h", |
210 "codecs/g722/include/g722_interface.h", | 212 "codecs/g722/include/g722_interface.h", |
211 ] | 213 ] |
212 | 214 |
213 configs += [ "../..:common_config" ] | 215 configs += [ "../..:common_config" ] |
214 | 216 |
215 public_configs = [ | 217 public_configs = [ |
216 "../..:common_inherited_config", | 218 "../..:common_inherited_config", |
217 ":g722_config", | 219 ":g722_config", |
218 ] | 220 ] |
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 "../../system_wrappers", | 790 "../../system_wrappers", |
789 ] | 791 ] |
790 | 792 |
791 defines = [] | 793 defines = [] |
792 | 794 |
793 if (rtc_include_opus) { | 795 if (rtc_include_opus) { |
794 defines += [ "WEBRTC_CODEC_OPUS" ] | 796 defines += [ "WEBRTC_CODEC_OPUS" ] |
795 deps += [ ":webrtc_opus" ] | 797 deps += [ ":webrtc_opus" ] |
796 } | 798 } |
797 } | 799 } |
OLD | NEW |