| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'target_name': 'neteq', | 49 'target_name': 'neteq', |
| 50 'type': 'static_library', | 50 'type': 'static_library', |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 '<@(neteq_dependencies)', | 52 '<@(neteq_dependencies)', |
| 53 '<(webrtc_root)/common.gyp:webrtc_common', | 53 '<(webrtc_root)/common.gyp:webrtc_common', |
| 54 ], | 54 ], |
| 55 'defines': [ | 55 'defines': [ |
| 56 '<@(neteq_defines)', | 56 '<@(neteq_defines)', |
| 57 ], | 57 ], |
| 58 'sources': [ | 58 'sources': [ |
| 59 'interface/neteq.h', | 59 'include/neteq.h', |
| 60 'accelerate.cc', | 60 'accelerate.cc', |
| 61 'accelerate.h', | 61 'accelerate.h', |
| 62 'audio_classifier.cc', | 62 'audio_classifier.cc', |
| 63 'audio_classifier.h', | 63 'audio_classifier.h', |
| 64 'audio_decoder_impl.cc', | 64 'audio_decoder_impl.cc', |
| 65 'audio_decoder_impl.h', | 65 'audio_decoder_impl.h', |
| 66 'audio_multi_vector.cc', | 66 'audio_multi_vector.cc', |
| 67 'audio_multi_vector.h', | 67 'audio_multi_vector.h', |
| 68 'audio_vector.cc', | 68 'audio_vector.cc', |
| 69 'audio_vector.h', | 69 'audio_vector.h', |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 'dependencies': [ | 208 'dependencies': [ |
| 209 '<(apk_tests_path):audio_decoder_unittests_apk', | 209 '<(apk_tests_path):audio_decoder_unittests_apk', |
| 210 ], | 210 ], |
| 211 }, | 211 }, |
| 212 ], | 212 ], |
| 213 }], | 213 }], |
| 214 ], | 214 ], |
| 215 }], # include_tests | 215 }], # include_tests |
| 216 ], # conditions | 216 ], # conditions |
| 217 } | 217 } |
| OLD | NEW |