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

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: Fixing win compilation and gyp dependencies 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'audio_decoder_interface', 150 'audio_decoder_interface',
151 'neteq_unittest_tools', 151 'neteq_unittest_tools',
152 '<(DEPTH)/testing/gtest.gyp:gtest', 152 '<(DEPTH)/testing/gtest.gyp:gtest',
153 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 153 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
154 '<(webrtc_root)/test/test.gyp:test_support_main', 154 '<(webrtc_root)/test/test.gyp:test_support_main',
155 ], 155 ],
156 'defines': [ 156 'defines': [
157 '<@(neteq_defines)', 157 '<@(neteq_defines)',
158 ], 158 ],
159 'sources': [ 159 'sources': [
160 'audio_decoder_impl.cc',
161 'audio_decoder_impl.h',
162 'audio_decoder_unittest.cc', 160 'audio_decoder_unittest.cc',
163 ], 161 ],
164 'conditions': [ 162 'conditions': [
165 ['OS=="android"', { 163 ['OS=="android"', {
166 'dependencies': [ 164 'dependencies': [
167 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e', 165 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e',
168 ], 166 ],
169 }], 167 }],
170 ['OS=="ios"', { 168 ['OS=="ios"', {
171 'mac_bundle_resources': [ 169 'mac_bundle_resources': [
172 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', 170 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
173 ], 171 ],
174 }], 172 }],
175 ], 173 ],
176 }, # audio_decoder_unittests 174 }, # audio_decoder_unittests
177 175
178 { 176 {
177 'target_name': 'rtc_event_log_source',
178 'type': 'static_library',
179 'dependencies': [
180 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
181 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto',
182 ],
183 'export_dependent_settings': [
184 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
185 ],
186 'sources': [
187 'tools/rtc_event_log_source.h',
188 'tools/rtc_event_log_source.cc',
189 ],
190 },
191
192 {
193 'target_name': 'neteq_unittest_proto',
194 'type': 'static_library',
195 'sources': [
196 'neteq_unittest.proto',
197 ],
198 'variables': {
199 'proto_in_dir': '.',
200 # Workaround to protect against gyp's pathname relativization when
201 # this file is included by modules.gyp.
202 'proto_out_protected': 'webrtc/audio_coding/neteq',
203 'proto_out_dir': '<(proto_out_protected)',
204 },
205 'includes': ['../../../build/protoc.gypi',],
206 },
207
208 {
179 'target_name': 'neteq_unittest_tools', 209 'target_name': 'neteq_unittest_tools',
180 'type': 'static_library', 210 'type': 'static_library',
181 'dependencies': [ 211 'dependencies': [
212 'neteq',
182 'rtp_rtcp', 213 'rtp_rtcp',
214 'rtc_event_log_source',
183 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 215 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
184 '<(webrtc_root)/test/test.gyp:rtp_test_utils', 216 '<(webrtc_root)/test/test.gyp:rtp_test_utils',
185 ], 217 ],
186 'direct_dependent_settings': { 218 'direct_dependent_settings': {
187 'include_dirs': [ 219 'include_dirs': [
188 'tools', 220 'tools',
189 ], 221 ],
190 }, 222 },
191 'include_dirs': [ 223 'include_dirs': [
192 'tools', 224 'tools',
193 ], 225 ],
194 'sources': [ 226 'sources': [
195 'tools/audio_checksum.h', 227 'tools/audio_checksum.h',
196 'tools/audio_loop.cc', 228 'tools/audio_loop.cc',
197 'tools/audio_loop.h', 229 'tools/audio_loop.h',
198 'tools/audio_sink.h', 230 'tools/audio_sink.h',
199 'tools/constant_pcm_packet_source.cc', 231 'tools/constant_pcm_packet_source.cc',
200 'tools/constant_pcm_packet_source.h', 232 'tools/constant_pcm_packet_source.h',
233 'tools/fake_decode_from_file.cc',
234 'tools/fake_decode_from_file.h',
201 'tools/input_audio_file.cc', 235 'tools/input_audio_file.cc',
202 'tools/input_audio_file.h', 236 'tools/input_audio_file.h',
237 'tools/neteq_input.h',
238 'tools/neteq_packet_source_input.cc',
239 'tools/neteq_packet_source_input.h',
240 'tools/neteq_replacement_input.cc',
241 'tools/neteq_replacement_input.h',
242 'tools/neteq_test.cc',
243 'tools/neteq_test.h',
203 'tools/output_audio_file.h', 244 'tools/output_audio_file.h',
204 'tools/output_wav_file.h', 245 'tools/output_wav_file.h',
205 'tools/packet.cc', 246 'tools/packet.cc',
206 'tools/packet.h', 247 'tools/packet.h',
207 'tools/packet_source.h', 248 'tools/packet_source.h',
208 'tools/resample_input_audio_file.cc', 249 'tools/resample_input_audio_file.cc',
209 'tools/resample_input_audio_file.h', 250 'tools/resample_input_audio_file.h',
210 'tools/rtp_file_source.cc', 251 'tools/rtp_file_source.cc',
211 'tools/rtp_file_source.h', 252 'tools/rtp_file_source.h',
212 'tools/rtp_generator.cc', 253 'tools/rtp_generator.cc',
213 'tools/rtp_generator.h', 254 'tools/rtp_generator.h',
214 ], 255 ],
215 }, # neteq_unittest_tools 256 }, # neteq_unittest_tools
216 ], # targets 257 ], # targets
217 }], # include_tests 258 }], # include_tests
218 ], # conditions 259 ], # conditions
219 } 260 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/audio_coding/neteq/neteq_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698