| 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': { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'neteq_defines': ['WEBRTC_CODEC_ISAC',], | 33 'neteq_defines': ['WEBRTC_CODEC_ISAC',], |
| 34 }], | 34 }], |
| 35 ], | 35 ], |
| 36 'codecs': ['g722',], | 36 'codecs': ['g722',], |
| 37 'neteq_defines': ['WEBRTC_CODEC_G722',], | 37 'neteq_defines': ['WEBRTC_CODEC_G722',], |
| 38 }], | 38 }], |
| 39 ], | 39 ], |
| 40 'neteq_dependencies': [ | 40 'neteq_dependencies': [ |
| 41 '<@(codecs)', | 41 '<@(codecs)', |
| 42 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 42 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 43 '<(webrtc_root)/modules/modules.gyp:audio_frame_operations', |
| 43 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 44 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 44 'audio_decoder_interface', | 45 'audio_decoder_interface', |
| 45 ], | 46 ], |
| 46 }, | 47 }, |
| 47 'targets': [ | 48 'targets': [ |
| 48 { | 49 { |
| 49 'target_name': 'neteq', | 50 'target_name': 'neteq', |
| 50 'type': 'static_library', | 51 'type': 'static_library', |
| 51 'dependencies': [ | 52 'dependencies': [ |
| 52 '<@(neteq_dependencies)', | 53 '<@(neteq_dependencies)', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'tick_timer.cc', | 129 'tick_timer.cc', |
| 129 'tick_timer.h', | 130 'tick_timer.h', |
| 130 'timestamp_scaler.cc', | 131 'timestamp_scaler.cc', |
| 131 'timestamp_scaler.h', | 132 'timestamp_scaler.h', |
| 132 'time_stretch.cc', | 133 'time_stretch.cc', |
| 133 'time_stretch.h', | 134 'time_stretch.h', |
| 134 ], | 135 ], |
| 135 }, | 136 }, |
| 136 ], # targets | 137 ], # targets |
| 137 } | 138 } |
| OLD | NEW |