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 25 matching lines...) Expand all Loading... |
36 'audio_coding_defines': ['WEBRTC_CODEC_G722',], | 36 'audio_coding_defines': ['WEBRTC_CODEC_G722',], |
37 }], | 37 }], |
38 ['build_with_mozilla==0 and build_with_chromium==0', { | 38 ['build_with_mozilla==0 and build_with_chromium==0', { |
39 'audio_coding_dependencies': ['ilbc', 'red',], | 39 'audio_coding_dependencies': ['ilbc', 'red',], |
40 'audio_coding_defines': ['WEBRTC_CODEC_ILBC', 'WEBRTC_CODEC_RED',], | 40 'audio_coding_defines': ['WEBRTC_CODEC_ILBC', 'WEBRTC_CODEC_RED',], |
41 }], | 41 }], |
42 ], | 42 ], |
43 }, | 43 }, |
44 'targets': [ | 44 'targets': [ |
45 { | 45 { |
| 46 'target_name': 'rent_a_codec', |
| 47 'type': 'static_library', |
| 48 'defines': [ |
| 49 '<@(audio_coding_defines)', |
| 50 ], |
| 51 'dependencies': [ |
| 52 '<(webrtc_root)/common.gyp:webrtc_common', |
| 53 ], |
| 54 'include_dirs': [ |
| 55 '<(webrtc_root)', |
| 56 ], |
| 57 'direct_dependent_settings': { |
| 58 'include_dirs': [ |
| 59 '<(webrtc_root)', |
| 60 ], |
| 61 }, |
| 62 'sources': [ |
| 63 'acm2/acm_codec_database.cc', |
| 64 'acm2/acm_codec_database.h', |
| 65 'acm2/rent_a_codec.cc', |
| 66 'acm2/rent_a_codec.h', |
| 67 ], |
| 68 }, |
| 69 { |
46 'target_name': 'audio_coding_module', | 70 'target_name': 'audio_coding_module', |
47 'type': 'static_library', | 71 'type': 'static_library', |
48 'defines': [ | 72 'defines': [ |
49 '<@(audio_coding_defines)', | 73 '<@(audio_coding_defines)', |
50 ], | 74 ], |
51 'dependencies': [ | 75 'dependencies': [ |
52 '<@(audio_coding_dependencies)', | 76 '<@(audio_coding_dependencies)', |
53 '<(webrtc_root)/common.gyp:webrtc_common', | 77 '<(webrtc_root)/common.gyp:webrtc_common', |
54 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | 78 '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
55 'neteq', | 79 'neteq', |
| 80 'rent_a_codec', |
56 ], | 81 ], |
57 'include_dirs': [ | 82 'include_dirs': [ |
58 'interface', | 83 'interface', |
59 '../../interface', | 84 '../../interface', |
60 '<(webrtc_root)', | 85 '<(webrtc_root)', |
61 ], | 86 ], |
62 'direct_dependent_settings': { | 87 'direct_dependent_settings': { |
63 'include_dirs': [ | 88 'include_dirs': [ |
64 'interface', | 89 'interface', |
65 '../../interface', | 90 '../../interface', |
66 '<(webrtc_root)', | 91 '<(webrtc_root)', |
67 ], | 92 ], |
68 }, | 93 }, |
69 'sources': [ | 94 'sources': [ |
70 'acm2/acm_codec_database.cc', | |
71 'acm2/acm_codec_database.h', | |
72 'acm2/acm_common_defs.h', | 95 'acm2/acm_common_defs.h', |
73 'acm2/acm_receiver.cc', | 96 'acm2/acm_receiver.cc', |
74 'acm2/acm_receiver.h', | 97 'acm2/acm_receiver.h', |
75 'acm2/acm_resampler.cc', | 98 'acm2/acm_resampler.cc', |
76 'acm2/acm_resampler.h', | 99 'acm2/acm_resampler.h', |
77 'acm2/audio_coding_module.cc', | 100 'acm2/audio_coding_module.cc', |
78 'acm2/audio_coding_module_impl.cc', | 101 'acm2/audio_coding_module_impl.cc', |
79 'acm2/audio_coding_module_impl.h', | 102 'acm2/audio_coding_module_impl.h', |
80 'acm2/call_statistics.cc', | 103 'acm2/call_statistics.cc', |
81 'acm2/call_statistics.h', | 104 'acm2/call_statistics.h', |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'sources': [ | 186 'sources': [ |
164 'test/insert_packet_with_timing.cc', | 187 'test/insert_packet_with_timing.cc', |
165 'test/Channel.cc', | 188 'test/Channel.cc', |
166 'test/PCMFile.cc', | 189 'test/PCMFile.cc', |
167 ], | 190 ], |
168 }, # delay_test | 191 }, # delay_test |
169 ], | 192 ], |
170 }], | 193 }], |
171 ], | 194 ], |
172 } | 195 } |
OLD | NEW |