| 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 'audio_coding_dependencies': [ | 11 'audio_coding_dependencies': [ |
| 12 'CNG', | 12 'cng', |
| 13 'G711', | 13 'g711', |
| 14 'G722', | 14 'g722', |
| 15 'iLBC', | 15 'ilbc', |
| 16 'iSAC', | 16 'isac', |
| 17 'iSACFix', | 17 'isac_fix', |
| 18 'PCM16B', | 18 'pcm16b', |
| 19 'red', | 19 'red', |
| 20 '<(webrtc_root)/common.gyp:webrtc_common', | 20 '<(webrtc_root)/common.gyp:webrtc_common', |
| 21 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 21 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 22 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 22 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 23 ], | 23 ], |
| 24 'audio_coding_defines': [], | 24 'audio_coding_defines': [], |
| 25 'conditions': [ | 25 'conditions': [ |
| 26 ['include_opus==1', { | 26 ['include_opus==1', { |
| 27 'audio_coding_dependencies': ['webrtc_opus',], | 27 'audio_coding_dependencies': ['webrtc_opus',], |
| 28 'audio_coding_defines': ['WEBRTC_CODEC_OPUS',], | 28 'audio_coding_defines': ['WEBRTC_CODEC_OPUS',], |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'sources': [ | 154 'sources': [ |
| 155 '../test/insert_packet_with_timing.cc', | 155 '../test/insert_packet_with_timing.cc', |
| 156 '../test/Channel.cc', | 156 '../test/Channel.cc', |
| 157 '../test/PCMFile.cc', | 157 '../test/PCMFile.cc', |
| 158 ], | 158 ], |
| 159 }, # delay_test | 159 }, # delay_test |
| 160 ], | 160 ], |
| 161 }], | 161 }], |
| 162 ], | 162 ], |
| 163 } | 163 } |
| OLD | NEW |