| OLD | NEW |
| 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'ilbc', | 12 'target_name': 'ilbc', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 15 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 16 'audio_encoder_interface', | 16 'audio_encoder_interface', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | |
| 19 'include', | |
| 20 '<(webrtc_root)', | |
| 21 ], | |
| 22 'direct_dependent_settings': { | |
| 23 'include_dirs': [ | |
| 24 'include', | |
| 25 '<(webrtc_root)', | |
| 26 ], | |
| 27 }, | |
| 28 'sources': [ | 18 'sources': [ |
| 29 'include/audio_decoder_ilbc.h', | |
| 30 'include/audio_encoder_ilbc.h', | |
| 31 'include/ilbc.h', | |
| 32 'abs_quant.c', | 19 'abs_quant.c', |
| 33 'abs_quant_loop.c', | 20 'abs_quant_loop.c', |
| 34 'audio_decoder_ilbc.cc', | 21 'audio_decoder_ilbc.cc', |
| 22 'audio_decoder_ilbc.h', |
| 35 'audio_encoder_ilbc.cc', | 23 'audio_encoder_ilbc.cc', |
| 24 'audio_encoder_ilbc.h', |
| 36 'augmented_cb_corr.c', | 25 'augmented_cb_corr.c', |
| 37 'bw_expand.c', | 26 'bw_expand.c', |
| 38 'cb_construct.c', | 27 'cb_construct.c', |
| 39 'cb_mem_energy.c', | 28 'cb_mem_energy.c', |
| 40 'cb_mem_energy_augmentation.c', | 29 'cb_mem_energy_augmentation.c', |
| 41 'cb_mem_energy_calc.c', | 30 'cb_mem_energy_calc.c', |
| 42 'cb_search.c', | 31 'cb_search.c', |
| 43 'cb_search_core.c', | 32 'cb_search_core.c', |
| 44 'cb_update_best_index.c', | 33 'cb_update_best_index.c', |
| 45 'chebyshev.c', | 34 'chebyshev.c', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 58 'filtered_cb_vecs.c', | 47 'filtered_cb_vecs.c', |
| 59 'frame_classify.c', | 48 'frame_classify.c', |
| 60 'gain_dequant.c', | 49 'gain_dequant.c', |
| 61 'gain_quant.c', | 50 'gain_quant.c', |
| 62 'get_cd_vec.c', | 51 'get_cd_vec.c', |
| 63 'get_lsp_poly.c', | 52 'get_lsp_poly.c', |
| 64 'get_sync_seq.c', | 53 'get_sync_seq.c', |
| 65 'hp_input.c', | 54 'hp_input.c', |
| 66 'hp_output.c', | 55 'hp_output.c', |
| 67 'ilbc.c', | 56 'ilbc.c', |
| 57 'ilbc.h', |
| 68 'index_conv_dec.c', | 58 'index_conv_dec.c', |
| 69 'index_conv_enc.c', | 59 'index_conv_enc.c', |
| 70 'init_decode.c', | 60 'init_decode.c', |
| 71 'init_encode.c', | 61 'init_encode.c', |
| 72 'interpolate.c', | 62 'interpolate.c', |
| 73 'interpolate_samples.c', | 63 'interpolate_samples.c', |
| 74 'lpc_encode.c', | 64 'lpc_encode.c', |
| 75 'lsf_check.c', | 65 'lsf_check.c', |
| 76 'lsf_interpolate_to_poly_dec.c', | 66 'lsf_interpolate_to_poly_dec.c', |
| 77 'lsf_interpolate_to_poly_enc.c', | 67 'lsf_interpolate_to_poly_enc.c', |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'ilbc', | 172 'ilbc', |
| 183 ], | 173 ], |
| 184 'sources': [ | 174 'sources': [ |
| 185 'test/iLBC_test.c', | 175 'test/iLBC_test.c', |
| 186 ], | 176 ], |
| 187 }, # ilbc_test | 177 }, # ilbc_test |
| 188 ], # targets | 178 ], # targets |
| 189 }], # include_tests | 179 }], # include_tests |
| 190 ], # conditions | 180 ], # conditions |
| 191 } | 181 } |
| OLD | NEW |