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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 'acm2/initial_delay_manager.h', | 184 'acm2/initial_delay_manager.h', |
185 'include/audio_coding_module.h', | 185 'include/audio_coding_module.h', |
186 'include/audio_coding_module_typedefs.h', | 186 'include/audio_coding_module_typedefs.h', |
187 ], | 187 ], |
188 }, | 188 }, |
189 ], | 189 ], |
190 'conditions': [ | 190 'conditions': [ |
191 ['include_opus==1', { | 191 ['include_opus==1', { |
192 'includes': ['codecs/opus/opus.gypi',], | 192 'includes': ['codecs/opus/opus.gypi',], |
193 }], | 193 }], |
194 ['include_tests==1', { | |
195 'targets': [ | |
196 { | |
197 'target_name': 'acm_receive_test', | |
198 'type': 'static_library', | |
199 'defines': [ | |
200 '<@(audio_coding_defines)', | |
201 ], | |
202 'dependencies': [ | |
203 '<@(audio_coding_dependencies)', | |
204 'audio_coding_module', | |
205 'neteq_unittest_tools', | |
206 '<(DEPTH)/testing/gtest.gyp:gtest', | |
207 ], | |
208 'sources': [ | |
209 'acm2/acm_receive_test_oldapi.cc', | |
210 'acm2/acm_receive_test_oldapi.h', | |
211 ], | |
212 }, # acm_receive_test | |
213 { | |
214 'target_name': 'acm_send_test', | |
215 'type': 'static_library', | |
216 'defines': [ | |
217 '<@(audio_coding_defines)', | |
218 ], | |
219 'dependencies': [ | |
220 '<@(audio_coding_dependencies)', | |
221 'audio_coding_module', | |
222 'neteq_unittest_tools', | |
223 '<(DEPTH)/testing/gtest.gyp:gtest', | |
224 ], | |
225 'sources': [ | |
226 'acm2/acm_send_test_oldapi.cc', | |
227 'acm2/acm_send_test_oldapi.h', | |
228 ], | |
229 }, # acm_send_test | |
230 { | |
231 'target_name': 'delay_test', | |
232 'type': 'executable', | |
233 'dependencies': [ | |
234 'audio_coding_module', | |
235 '<(DEPTH)/testing/gtest.gyp:gtest', | |
236 '<(webrtc_root)/common.gyp:webrtc_common', | |
237 '<(webrtc_root)/test/test.gyp:test_support', | |
238 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | |
239 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | |
240 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
241 ], | |
242 'sources': [ | |
243 'test/delay_test.cc', | |
244 'test/Channel.cc', | |
245 'test/PCMFile.cc', | |
246 'test/utility.cc', | |
247 ], | |
248 }, # delay_test | |
249 { | |
250 'target_name': 'insert_packet_with_timing', | |
251 'type': 'executable', | |
252 'dependencies': [ | |
253 'audio_coding_module', | |
254 '<(DEPTH)/testing/gtest.gyp:gtest', | |
255 '<(webrtc_root)/common.gyp:webrtc_common', | |
256 '<(webrtc_root)/test/test.gyp:test_support', | |
257 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | |
258 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | |
259 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
260 ], | |
261 'sources': [ | |
262 'test/insert_packet_with_timing.cc', | |
263 'test/Channel.cc', | |
264 'test/PCMFile.cc', | |
265 ], | |
266 }, # delay_test | |
267 ], | |
268 }], | |
269 ], | 194 ], |
270 } | 195 } |
OLD | NEW |