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 'conditions': [ | 10 'conditions': [ |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 'test/neteq_pcmu_quality_test.cc', | 232 'test/neteq_pcmu_quality_test.cc', |
233 ], | 233 ], |
234 }, | 234 }, |
235 | 235 |
236 { | 236 { |
237 'target_name': 'neteq_ilbc_quality_test', | 237 'target_name': 'neteq_ilbc_quality_test', |
238 'type': 'executable', | 238 'type': 'executable', |
239 'dependencies': [ | 239 'dependencies': [ |
240 '<(DEPTH)/testing/gtest.gyp:gtest', | 240 '<(DEPTH)/testing/gtest.gyp:gtest', |
241 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 241 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 242 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa
ult', |
242 '<(webrtc_root)/test/test.gyp:test_support_main', | 243 '<(webrtc_root)/test/test.gyp:test_support_main', |
243 'neteq', | 244 'neteq', |
244 'neteq_test_support', | 245 'neteq_test_support', |
245 'ilbc', | 246 'ilbc', |
246 ], | 247 ], |
247 'sources': [ | 248 'sources': [ |
248 'test/neteq_ilbc_quality_test.cc', | 249 'test/neteq_ilbc_quality_test.cc', |
249 ], | 250 ], |
250 }, | 251 }, |
251 | 252 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 'test/NETEQTEST_RTPpacket.cc', | 288 'test/NETEQTEST_RTPpacket.cc', |
288 'test/NETEQTEST_RTPpacket.h', | 289 'test/NETEQTEST_RTPpacket.h', |
289 ], | 290 ], |
290 # Disable warnings to enable Win64 build, issue 1323. | 291 # Disable warnings to enable Win64 build, issue 1323. |
291 'msvs_disabled_warnings': [ | 292 'msvs_disabled_warnings': [ |
292 4267, # size_t to int truncation. | 293 4267, # size_t to int truncation. |
293 ], | 294 ], |
294 }, | 295 }, |
295 ], # targets | 296 ], # targets |
296 } | 297 } |
OLD | NEW |