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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 include_dirs = [ | 140 include_dirs = [ |
141 "../../..", | 141 "../../..", |
142 "codecs/cng/include", | 142 "codecs/cng/include", |
143 ] | 143 ] |
144 } | 144 } |
145 | 145 |
146 source_set("cng") { | 146 source_set("cng") { |
147 sources = [ | 147 sources = [ |
148 "codecs/cng/audio_encoder_cng.cc", | 148 "codecs/cng/audio_encoder_cng.cc", |
149 "codecs/cng/audio_encoder_cng.h", | 149 "codecs/cng/audio_encoder_cng.h", |
150 "codecs/cng/cng_helpfuns.c", | 150 "codecs/cng/webrtc_cng.cc", |
151 "codecs/cng/cng_helpfuns.h", | |
152 "codecs/cng/webrtc_cng.c", | |
153 "codecs/cng/webrtc_cng.h", | 151 "codecs/cng/webrtc_cng.h", |
154 ] | 152 ] |
155 | 153 |
156 configs += [ "../..:common_config" ] | 154 configs += [ "../..:common_config" ] |
157 | 155 |
158 public_configs = [ | 156 public_configs = [ |
159 "../..:common_inherited_config", | 157 "../..:common_inherited_config", |
160 ":cng_config", | 158 ":cng_config", |
161 ] | 159 ] |
162 | 160 |
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 defines += [ "WEBRTC_CODEC_ISACFX" ] | 843 defines += [ "WEBRTC_CODEC_ISACFX" ] |
846 deps += [ ":isac_fix" ] | 844 deps += [ ":isac_fix" ] |
847 } else { | 845 } else { |
848 defines += [ "WEBRTC_CODEC_ISAC" ] | 846 defines += [ "WEBRTC_CODEC_ISAC" ] |
849 deps += [ ":isac" ] | 847 deps += [ ":isac" ] |
850 } | 848 } |
851 defines += [ "WEBRTC_CODEC_G722" ] | 849 defines += [ "WEBRTC_CODEC_G722" ] |
852 deps += [ ":g722" ] | 850 deps += [ ":g722" ] |
853 } | 851 } |
854 } | 852 } |
OLD | NEW |