OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'acm2/call_statistics.cc', | 179 'acm2/call_statistics.cc', |
180 'acm2/call_statistics.h', | 180 'acm2/call_statistics.h', |
181 'acm2/codec_manager.cc', | 181 'acm2/codec_manager.cc', |
182 'acm2/codec_manager.h', | 182 'acm2/codec_manager.h', |
183 'acm2/initial_delay_manager.cc', | 183 'acm2/initial_delay_manager.cc', |
184 'acm2/initial_delay_manager.h', | 184 'acm2/initial_delay_manager.h', |
185 'include/audio_coding_module.h', | 185 'include/audio_coding_module.h', |
186 'include/audio_coding_module_typedefs.h', | 186 'include/audio_coding_module_typedefs.h', |
187 ], | 187 ], |
188 }, | 188 }, |
189 { | |
190 'target_name': 'legacy_encoded_audio_frame', | |
191 'type': 'static_library', | |
192 'dependencies': [ | |
193 '<(webrtc_root)/common.gyp:webrtc_common', | |
194 'audio_decoder_interface', | |
195 ], | |
196 'include_dirs': [ | |
197 '<(webrtc_root)', | |
198 ], | |
199 'direct_dependent_settings': { | |
200 'include_dirs': [ | |
201 '<(webrtc_root)', | |
202 ], | |
203 }, | |
204 'sources': [ | |
205 'codecs/legacy_encoded_audio_frame.cc', | |
206 'codecs/legacy_encoded_audio_frame.h', | |
207 ], | |
208 }, | |
209 ], | 189 ], |
210 'conditions': [ | 190 'conditions': [ |
211 ['include_opus==1', { | 191 ['include_opus==1', { |
212 'includes': ['codecs/opus/opus.gypi',], | 192 'includes': ['codecs/opus/opus.gypi',], |
213 }], | 193 }], |
214 ], | 194 ], |
215 } | 195 } |
OLD | NEW |