OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 'includes': [ | 10 'includes': [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'audio_coding_dependencies': [ | 62 'audio_coding_dependencies': [ |
63 '<@(audio_codec_dependencies)', | 63 '<@(audio_codec_dependencies)', |
64 '<(webrtc_root)/common.gyp:webrtc_common', | 64 '<(webrtc_root)/common.gyp:webrtc_common', |
65 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 65 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
66 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 66 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
67 ], | 67 ], |
68 'audio_coding_defines': '<(audio_codec_defines)', | 68 'audio_coding_defines': '<(audio_codec_defines)', |
69 }, | 69 }, |
70 'targets': [ | 70 'targets': [ |
71 { | 71 { |
| 72 'target_name': 'audio_decoder_factory_interface', |
| 73 'type': 'static_library', |
| 74 'dependencies': [ |
| 75 '<(webrtc_root)/common.gyp:webrtc_common', |
| 76 ], |
| 77 'include_dirs': [ |
| 78 '<(webrtc_root)', |
| 79 ], |
| 80 'direct_dependent_settings': { |
| 81 'include_dirs': [ |
| 82 '<(webrtc_root)', |
| 83 ], |
| 84 }, |
| 85 'sources': [ |
| 86 'codecs/audio_decoder_factory.h', |
| 87 'codecs/audio_format.cc', |
| 88 'codecs/audio_format.h', |
| 89 ], |
| 90 }, |
| 91 { |
| 92 'target_name': 'builtin_audio_decoder_factory', |
| 93 'type': 'static_library', |
| 94 'defines': [ |
| 95 '<@(audio_codec_defines)', |
| 96 ], |
| 97 'dependencies': [ |
| 98 '<(webrtc_root)/common.gyp:webrtc_common', |
| 99 '<@(audio_codec_dependencies)', |
| 100 'audio_decoder_factory_interface', |
| 101 ], |
| 102 'include_dirs': [ |
| 103 '<(webrtc_root)', |
| 104 ], |
| 105 'direct_dependent_settings': { |
| 106 'include_dirs': [ |
| 107 '<(webrtc_root)', |
| 108 ], |
| 109 }, |
| 110 'sources': [ |
| 111 'codecs/builtin_audio_decoder_factory.cc', |
| 112 'codecs/builtin_audio_decoder_factory.h', |
| 113 ], |
| 114 }, |
| 115 { |
72 'target_name': 'rent_a_codec', | 116 'target_name': 'rent_a_codec', |
73 'type': 'static_library', | 117 'type': 'static_library', |
74 'defines': [ | 118 'defines': [ |
75 '<@(audio_codec_defines)', | 119 '<@(audio_codec_defines)', |
76 ], | 120 ], |
77 'dependencies': [ | 121 'dependencies': [ |
78 '<(webrtc_root)/common.gyp:webrtc_common', | 122 '<(webrtc_root)/common.gyp:webrtc_common', |
79 '<@(audio_codec_dependencies)', | 123 '<@(audio_codec_dependencies)', |
80 ], | 124 ], |
81 'include_dirs': [ | 125 'include_dirs': [ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 'sources': [ | 261 'sources': [ |
218 'test/insert_packet_with_timing.cc', | 262 'test/insert_packet_with_timing.cc', |
219 'test/Channel.cc', | 263 'test/Channel.cc', |
220 'test/PCMFile.cc', | 264 'test/PCMFile.cc', |
221 ], | 265 ], |
222 }, # delay_test | 266 }, # delay_test |
223 ], | 267 ], |
224 }], | 268 }], |
225 ], | 269 ], |
226 } | 270 } |
OLD | NEW |