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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'audio_decoder_interface', | 44 'audio_decoder_interface', |
45 ], | 45 ], |
46 }, | 46 }, |
47 'targets': [ | 47 'targets': [ |
48 { | 48 { |
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 'builtin_audio_decoder_factory', |
| 55 'rent_a_codec', |
54 ], | 56 ], |
55 'defines': [ | 57 'defines': [ |
56 '<@(neteq_defines)', | 58 '<@(neteq_defines)', |
57 ], | 59 ], |
58 'sources': [ | 60 'sources': [ |
59 'include/neteq.h', | 61 'include/neteq.h', |
60 'accelerate.cc', | 62 'accelerate.cc', |
61 'accelerate.h', | 63 'accelerate.h', |
62 'audio_classifier.cc', | 64 'audio_classifier.cc', |
63 'audio_classifier.h', | 65 'audio_classifier.h', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 'tools/rtp_file_source.cc', | 208 'tools/rtp_file_source.cc', |
207 'tools/rtp_file_source.h', | 209 'tools/rtp_file_source.h', |
208 'tools/rtp_generator.cc', | 210 'tools/rtp_generator.cc', |
209 'tools/rtp_generator.h', | 211 'tools/rtp_generator.h', |
210 ], | 212 ], |
211 }, # neteq_unittest_tools | 213 }, # neteq_unittest_tools |
212 ], # targets | 214 ], # targets |
213 }], # include_tests | 215 }], # include_tests |
214 ], # conditions | 216 ], # conditions |
215 } | 217 } |
OLD | NEW |