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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 | 165 |
166 config("g711_config") { | 166 config("g711_config") { |
167 include_dirs = [ | 167 include_dirs = [ |
168 "../../..", | 168 "../../..", |
169 "codecs/g711/include", | 169 "codecs/g711/include", |
170 ] | 170 ] |
171 } | 171 } |
172 | 172 |
173 source_set("g711") { | 173 source_set("g711") { |
174 sources = [ | 174 sources = [ |
| 175 "codecs/g711/audio_decoder_pcm.cc", |
175 "codecs/g711/audio_encoder_pcm.cc", | 176 "codecs/g711/audio_encoder_pcm.cc", |
176 "codecs/g711/g711.c", | 177 "codecs/g711/g711.c", |
177 "codecs/g711/g711.h", | 178 "codecs/g711/g711.h", |
178 "codecs/g711/g711_interface.c", | 179 "codecs/g711/g711_interface.c", |
| 180 "codecs/g711/include/audio_decoder_pcm.h", |
179 "codecs/g711/include/audio_encoder_pcm.h", | 181 "codecs/g711/include/audio_encoder_pcm.h", |
180 "codecs/g711/include/g711_interface.h", | 182 "codecs/g711/include/g711_interface.h", |
181 ] | 183 ] |
182 | 184 |
183 configs += [ "../..:common_config" ] | 185 configs += [ "../..:common_config" ] |
184 | 186 |
185 public_configs = [ | 187 public_configs = [ |
186 "../..:common_inherited_config", | 188 "../..:common_inherited_config", |
187 ":g711_config", | 189 ":g711_config", |
188 ] | 190 ] |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 "../../system_wrappers", | 792 "../../system_wrappers", |
791 ] | 793 ] |
792 | 794 |
793 defines = [] | 795 defines = [] |
794 | 796 |
795 if (rtc_include_opus) { | 797 if (rtc_include_opus) { |
796 defines += [ "WEBRTC_CODEC_OPUS" ] | 798 defines += [ "WEBRTC_CODEC_OPUS" ] |
797 deps += [ ":webrtc_opus" ] | 799 deps += [ ":webrtc_opus" ] |
798 } | 800 } |
799 } | 801 } |
OLD | NEW |