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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 '<@(audio_coding_defines)', | 73 '<@(audio_coding_defines)', |
74 ], | 74 ], |
75 'dependencies': [ | 75 'dependencies': [ |
76 '<@(audio_coding_dependencies)', | 76 '<@(audio_coding_dependencies)', |
77 '<(webrtc_root)/common.gyp:webrtc_common', | 77 '<(webrtc_root)/common.gyp:webrtc_common', |
78 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | 78 '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
79 'neteq', | 79 'neteq', |
80 'rent_a_codec', | 80 'rent_a_codec', |
81 ], | 81 ], |
82 'include_dirs': [ | 82 'include_dirs': [ |
83 'interface', | 83 'include', |
84 '../../interface', | 84 '../../interface', |
85 '<(webrtc_root)', | 85 '<(webrtc_root)', |
86 ], | 86 ], |
87 'direct_dependent_settings': { | 87 'direct_dependent_settings': { |
88 'include_dirs': [ | 88 'include_dirs': [ |
89 'interface', | 89 'include', |
90 '../../interface', | 90 '../../interface', |
91 '<(webrtc_root)', | 91 '<(webrtc_root)', |
92 ], | 92 ], |
93 }, | 93 }, |
94 'sources': [ | 94 'sources': [ |
95 'acm2/acm_common_defs.h', | 95 'acm2/acm_common_defs.h', |
96 'acm2/acm_receiver.cc', | 96 'acm2/acm_receiver.cc', |
97 'acm2/acm_receiver.h', | 97 'acm2/acm_receiver.h', |
98 'acm2/acm_resampler.cc', | 98 'acm2/acm_resampler.cc', |
99 'acm2/acm_resampler.h', | 99 'acm2/acm_resampler.h', |
100 'acm2/audio_coding_module.cc', | 100 'acm2/audio_coding_module.cc', |
101 'acm2/audio_coding_module_impl.cc', | 101 'acm2/audio_coding_module_impl.cc', |
102 'acm2/audio_coding_module_impl.h', | 102 'acm2/audio_coding_module_impl.h', |
103 'acm2/call_statistics.cc', | 103 'acm2/call_statistics.cc', |
104 'acm2/call_statistics.h', | 104 'acm2/call_statistics.h', |
105 'acm2/codec_manager.cc', | 105 'acm2/codec_manager.cc', |
106 'acm2/codec_manager.h', | 106 'acm2/codec_manager.h', |
107 'acm2/codec_owner.cc', | 107 'acm2/codec_owner.cc', |
108 'acm2/codec_owner.h', | 108 'acm2/codec_owner.h', |
109 'acm2/initial_delay_manager.cc', | 109 'acm2/initial_delay_manager.cc', |
110 'acm2/initial_delay_manager.h', | 110 'acm2/initial_delay_manager.h', |
111 'acm2/nack.cc', | 111 'acm2/nack.cc', |
112 'acm2/nack.h', | 112 'acm2/nack.h', |
113 'interface/audio_coding_module.h', | 113 'include/audio_coding_module.h', |
114 'interface/audio_coding_module_typedefs.h', | 114 'include/audio_coding_module_typedefs.h', |
115 ], | 115 ], |
116 }, | 116 }, |
117 ], | 117 ], |
118 'conditions': [ | 118 'conditions': [ |
119 ['include_tests==1', { | 119 ['include_tests==1', { |
120 'targets': [ | 120 'targets': [ |
121 { | 121 { |
122 'target_name': 'acm_receive_test', | 122 'target_name': 'acm_receive_test', |
123 'type': 'static_library', | 123 'type': 'static_library', |
124 'defines': [ | 124 'defines': [ |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'sources': [ | 186 'sources': [ |
187 'test/insert_packet_with_timing.cc', | 187 'test/insert_packet_with_timing.cc', |
188 'test/Channel.cc', | 188 'test/Channel.cc', |
189 'test/PCMFile.cc', | 189 'test/PCMFile.cc', |
190 ], | 190 ], |
191 }, # delay_test | 191 }, # delay_test |
192 ], | 192 ], |
193 }], | 193 }], |
194 ], | 194 ], |
195 } | 195 } |
OLD | NEW |