Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1868143002: Convert CNG into C++ and remove it from AudioDecoder (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Implicit conversion to ArrayView in TestSidErroneous Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/codecs/audio_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/codecs/audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698