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

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

Issue 1443653004: Move CNG and RED management into the Rent-A-Codec (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Extract subroutine Created 5 years, 1 month 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
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "main/acm2/acm_receiver.h", 56 "main/acm2/acm_receiver.h",
57 "main/acm2/acm_resampler.cc", 57 "main/acm2/acm_resampler.cc",
58 "main/acm2/acm_resampler.h", 58 "main/acm2/acm_resampler.h",
59 "main/acm2/audio_coding_module.cc", 59 "main/acm2/audio_coding_module.cc",
60 "main/acm2/audio_coding_module_impl.cc", 60 "main/acm2/audio_coding_module_impl.cc",
61 "main/acm2/audio_coding_module_impl.h", 61 "main/acm2/audio_coding_module_impl.h",
62 "main/acm2/call_statistics.cc", 62 "main/acm2/call_statistics.cc",
63 "main/acm2/call_statistics.h", 63 "main/acm2/call_statistics.h",
64 "main/acm2/codec_manager.cc", 64 "main/acm2/codec_manager.cc",
65 "main/acm2/codec_manager.h", 65 "main/acm2/codec_manager.h",
66 "main/acm2/codec_owner.cc",
67 "main/acm2/codec_owner.h",
68 "main/acm2/initial_delay_manager.cc", 66 "main/acm2/initial_delay_manager.cc",
69 "main/acm2/initial_delay_manager.h", 67 "main/acm2/initial_delay_manager.h",
70 "main/include/audio_coding_module.h", 68 "main/include/audio_coding_module.h",
71 "main/include/audio_coding_module_typedefs.h", 69 "main/include/audio_coding_module_typedefs.h",
72 ] 70 ]
73 71
74 defines = [] 72 defines = []
75 73
76 configs += [ "../..:common_config" ] 74 configs += [ "../..:common_config" ]
77 75
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 deps += [ ":isac" ] 856 deps += [ ":isac" ]
859 } 857 }
860 defines += [ "WEBRTC_CODEC_G722" ] 858 defines += [ "WEBRTC_CODEC_G722" ]
861 deps += [ ":g722" ] 859 deps += [ ":g722" ]
862 } 860 }
863 if (!build_with_mozilla && !build_with_chromium) { 861 if (!build_with_mozilla && !build_with_chromium) {
864 defines += [ "WEBRTC_CODEC_ILBC" ] 862 defines += [ "WEBRTC_CODEC_ILBC" ]
865 deps += [ ":ilbc" ] 863 deps += [ ":ilbc" ]
866 } 864 }
867 } 865 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698