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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 | 114 |
115 source_set("audio_decoder_interface") { | 115 source_set("audio_decoder_interface") { |
116 sources = [ | 116 sources = [ |
117 "codecs/audio_decoder.cc", | 117 "codecs/audio_decoder.cc", |
118 "codecs/audio_decoder.h", | 118 "codecs/audio_decoder.h", |
119 ] | 119 ] |
120 configs += [ "../..:common_config" ] | 120 configs += [ "../..:common_config" ] |
121 public_configs = [ "../..:common_inherited_config" ] | 121 public_configs = [ "../..:common_inherited_config" ] |
122 deps = [ | 122 deps = [ |
123 "../..:webrtc_common", | 123 "../..:webrtc_common", |
| 124 "../../base:rtc_base_approved", |
124 ] | 125 ] |
125 } | 126 } |
126 | 127 |
127 source_set("audio_encoder_interface") { | 128 source_set("audio_encoder_interface") { |
128 sources = [ | 129 sources = [ |
129 "codecs/audio_encoder.cc", | 130 "codecs/audio_encoder.cc", |
130 "codecs/audio_encoder.h", | 131 "codecs/audio_encoder.h", |
131 ] | 132 ] |
132 configs += [ "../..:common_config" ] | 133 configs += [ "../..:common_config" ] |
133 public_configs = [ "../..:common_inherited_config" ] | 134 public_configs = [ "../..:common_inherited_config" ] |
134 deps = [ | 135 deps = [ |
135 "../..:webrtc_common", | 136 "../..:webrtc_common", |
| 137 "../../base:rtc_base_approved", |
136 ] | 138 ] |
137 } | 139 } |
138 | 140 |
139 config("cng_config") { | 141 config("cng_config") { |
140 include_dirs = [ | 142 include_dirs = [ |
141 "../../..", | 143 "../../..", |
142 "codecs/cng/include", | 144 "codecs/cng/include", |
143 ] | 145 ] |
144 } | 146 } |
145 | 147 |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 defines += [ "WEBRTC_CODEC_ISACFX" ] | 847 defines += [ "WEBRTC_CODEC_ISACFX" ] |
846 deps += [ ":isac_fix" ] | 848 deps += [ ":isac_fix" ] |
847 } else { | 849 } else { |
848 defines += [ "WEBRTC_CODEC_ISAC" ] | 850 defines += [ "WEBRTC_CODEC_ISAC" ] |
849 deps += [ ":isac" ] | 851 deps += [ ":isac" ] |
850 } | 852 } |
851 defines += [ "WEBRTC_CODEC_G722" ] | 853 defines += [ "WEBRTC_CODEC_G722" ] |
852 deps += [ ":g722" ] | 854 deps += [ ":g722" ] |
853 } | 855 } |
854 } | 856 } |
OLD | NEW |