| 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 12 matching lines...) Expand all Loading... |
| 23 'sources': [ | 23 'sources': [ |
| 24 'tools/rtc_event_log_source.h', | 24 'tools/rtc_event_log_source.h', |
| 25 'tools/rtc_event_log_source.cc', | 25 'tools/rtc_event_log_source.cc', |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 'target_name': 'neteq_rtpplay', | 29 'target_name': 'neteq_rtpplay', |
| 30 'type': 'executable', | 30 'type': 'executable', |
| 31 'dependencies': [ | 31 'dependencies': [ |
| 32 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 32 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 33 '<(webrtc_root)/test/test.gyp:test_support_main', | 33 '<(webrtc_root)/test/test.gyp:test_support', |
| 34 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, |
| 34 'rtc_event_log_source', | 35 'rtc_event_log_source', |
| 35 'neteq', | 36 'neteq', |
| 36 'neteq_unittest_tools', | 37 'neteq_unittest_tools', |
| 37 'pcm16b', | 38 'pcm16b', |
| 38 ], | 39 ], |
| 39 'sources': [ | 40 'sources': [ |
| 40 'tools/neteq_rtpplay.cc', | 41 'tools/neteq_rtpplay.cc', |
| 41 ], | 42 ], |
| 42 'defines': [ | 43 'defines': [ |
| 43 ], | 44 ], |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 'test/NETEQTEST_RTPpacket.cc', | 329 'test/NETEQTEST_RTPpacket.cc', |
| 329 'test/NETEQTEST_RTPpacket.h', | 330 'test/NETEQTEST_RTPpacket.h', |
| 330 ], | 331 ], |
| 331 # Disable warnings to enable Win64 build, issue 1323. | 332 # Disable warnings to enable Win64 build, issue 1323. |
| 332 'msvs_disabled_warnings': [ | 333 'msvs_disabled_warnings': [ |
| 333 4267, # size_t to int truncation. | 334 4267, # size_t to int truncation. |
| 334 ], | 335 ], |
| 335 }, | 336 }, |
| 336 ], # targets | 337 ], # targets |
| 337 } | 338 } |
| OLD | NEW |