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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'tools/neteq_external_decoder_test.h', | 167 'tools/neteq_external_decoder_test.h', |
168 'tools/neteq_performance_test.cc', | 168 'tools/neteq_performance_test.cc', |
169 'tools/neteq_performance_test.h', | 169 'tools/neteq_performance_test.h', |
170 ], | 170 ], |
171 }, # neteq_test_support | 171 }, # neteq_test_support |
172 | 172 |
173 { | 173 { |
174 'target_name': 'neteq_quality_test_support', | 174 'target_name': 'neteq_quality_test_support', |
175 'type': 'static_library', | 175 'type': 'static_library', |
176 'dependencies': [ | 176 'dependencies': [ |
| 177 '<(DEPTH)/testing/gtest.gyp:gtest', |
177 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 178 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
178 'neteq', | 179 'neteq', |
179 'neteq_unittest_tools', | 180 'neteq_unittest_tools', |
180 ], | 181 ], |
181 'sources': [ | 182 'sources': [ |
182 'tools/neteq_quality_test.cc', | 183 'tools/neteq_quality_test.cc', |
183 'tools/neteq_quality_test.h', | 184 'tools/neteq_quality_test.h', |
184 ], | 185 ], |
185 }, # neteq_test_support | 186 }, # neteq_test_support |
186 | 187 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 'test/NETEQTEST_RTPpacket.cc', | 303 'test/NETEQTEST_RTPpacket.cc', |
303 'test/NETEQTEST_RTPpacket.h', | 304 'test/NETEQTEST_RTPpacket.h', |
304 ], | 305 ], |
305 # Disable warnings to enable Win64 build, issue 1323. | 306 # Disable warnings to enable Win64 build, issue 1323. |
306 'msvs_disabled_warnings': [ | 307 'msvs_disabled_warnings': [ |
307 4267, # size_t to int truncation. | 308 4267, # size_t to int truncation. |
308 ], | 309 ], |
309 }, | 310 }, |
310 ], # targets | 311 ], # targets |
311 } | 312 } |
OLD | NEW |