Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: webrtc/modules/audio_coding/neteq/neteq.gypi

Issue 2020363003: Refactor neteq_rtpplay (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change how SSRC filtering works Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 }], 169 }],
170 ['OS=="ios"', { 170 ['OS=="ios"', {
171 'mac_bundle_resources': [ 171 'mac_bundle_resources': [
172 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', 172 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
173 ], 173 ],
174 }], 174 }],
175 ], 175 ],
176 }, # audio_decoder_unittests 176 }, # audio_decoder_unittests
177 177
178 { 178 {
179 'target_name': 'rtc_event_log_source',
180 'type': 'static_library',
181 'dependencies': [
182 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
183 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto',
184 ],
185 'export_dependent_settings': [
186 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
187 ],
188 'sources': [
189 'tools/rtc_event_log_source.h',
190 'tools/rtc_event_log_source.cc',
191 ],
192 },
193
194 {
195 'target_name': 'neteq_unittest_proto',
196 'type': 'static_library',
197 'sources': [
198 'neteq_unittest.proto',
199 ],
200 'variables': {
201 'proto_in_dir': '.',
202 # Workaround to protect against gyp's pathname relativization when
203 # this file is included by modules.gyp.
204 'proto_out_protected': 'webrtc/audio_coding/neteq',
205 'proto_out_dir': '<(proto_out_protected)',
206 },
207 'includes': ['../../../build/protoc.gypi',],
208 },
209
210 {
179 'target_name': 'neteq_unittest_tools', 211 'target_name': 'neteq_unittest_tools',
180 'type': 'static_library', 212 'type': 'static_library',
181 'dependencies': [ 213 'dependencies': [
214 'neteq',
182 'rtp_rtcp', 215 'rtp_rtcp',
216 'rtc_event_log_source',
183 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 217 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
184 '<(webrtc_root)/test/test.gyp:rtp_test_utils', 218 '<(webrtc_root)/test/test.gyp:rtp_test_utils',
185 ], 219 ],
186 'direct_dependent_settings': { 220 'direct_dependent_settings': {
187 'include_dirs': [ 221 'include_dirs': [
188 'tools', 222 'tools',
189 ], 223 ],
190 }, 224 },
191 'include_dirs': [ 225 'include_dirs': [
192 'tools', 226 'tools',
193 ], 227 ],
194 'sources': [ 228 'sources': [
195 'tools/audio_checksum.h', 229 'tools/audio_checksum.h',
196 'tools/audio_loop.cc', 230 'tools/audio_loop.cc',
197 'tools/audio_loop.h', 231 'tools/audio_loop.h',
198 'tools/audio_sink.h', 232 'tools/audio_sink.h',
199 'tools/constant_pcm_packet_source.cc', 233 'tools/constant_pcm_packet_source.cc',
200 'tools/constant_pcm_packet_source.h', 234 'tools/constant_pcm_packet_source.h',
235 'tools/fake_decode_from_file.cc',
236 'tools/fake_decode_from_file.h',
201 'tools/input_audio_file.cc', 237 'tools/input_audio_file.cc',
202 'tools/input_audio_file.h', 238 'tools/input_audio_file.h',
239 'tools/neteq_input.h',
240 'tools/neteq_packet_source_input.cc',
241 'tools/neteq_packet_source_input.h',
242 'tools/neteq_replacement_input.cc',
243 'tools/neteq_replacement_input.h',
244 'tools/neteq_test.cc',
245 'tools/neteq_test.h',
203 'tools/output_audio_file.h', 246 'tools/output_audio_file.h',
204 'tools/output_wav_file.h', 247 'tools/output_wav_file.h',
205 'tools/packet.cc', 248 'tools/packet.cc',
206 'tools/packet.h', 249 'tools/packet.h',
207 'tools/packet_source.h', 250 'tools/packet_source.h',
208 'tools/resample_input_audio_file.cc', 251 'tools/resample_input_audio_file.cc',
209 'tools/resample_input_audio_file.h', 252 'tools/resample_input_audio_file.h',
210 'tools/rtp_file_source.cc', 253 'tools/rtp_file_source.cc',
211 'tools/rtp_file_source.h', 254 'tools/rtp_file_source.h',
212 'tools/rtp_generator.cc', 255 'tools/rtp_generator.cc',
213 'tools/rtp_generator.h', 256 'tools/rtp_generator.h',
214 ], 257 ],
215 }, # neteq_unittest_tools 258 }, # neteq_unittest_tools
216 ], # targets 259 ], # targets
217 }], # include_tests 260 }], # include_tests
218 ], # conditions 261 ], # conditions
219 } 262 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698