OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 'variables': { | 10 'variables': { |
11 'codecs': [ | 11 'codecs': [ |
12 'G711', | 12 'cng', |
13 'G722', | 13 'g711', |
14 'PCM16B', | 14 'g722', |
15 'iLBC', | 15 'ilbc', |
16 'iSAC', | 16 'isac', |
17 'iSACFix', | 17 'isac_fix', |
18 'CNG', | 18 'pcm16b', |
19 ], | 19 ], |
20 'neteq_defines': [], | 20 'neteq_defines': [], |
21 'conditions': [ | 21 'conditions': [ |
22 ['include_opus==1', { | 22 ['include_opus==1', { |
23 'codecs': ['webrtc_opus',], | 23 'codecs': ['webrtc_opus',], |
24 'neteq_defines': ['WEBRTC_CODEC_OPUS',], | 24 'neteq_defines': ['WEBRTC_CODEC_OPUS',], |
25 }], | 25 }], |
26 ], | 26 ], |
27 'neteq_dependencies': [ | 27 'neteq_dependencies': [ |
28 '<@(codecs)', | 28 '<@(codecs)', |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'sources': [ | 214 'sources': [ |
215 'audio_decoder_unittests.isolate', | 215 'audio_decoder_unittests.isolate', |
216 ], | 216 ], |
217 }, | 217 }, |
218 ], | 218 ], |
219 }], | 219 }], |
220 ], | 220 ], |
221 }], # include_tests | 221 }], # include_tests |
222 ], # conditions | 222 ], # conditions |
223 } | 223 } |
OLD | NEW |