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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 # Disable warnings to enable Win64 build, issue 1323. | 73 # Disable warnings to enable Win64 build, issue 1323. |
74 'msvs_disabled_warnings': [ | 74 'msvs_disabled_warnings': [ |
75 4267, # size_t to int truncation. | 75 4267, # size_t to int truncation. |
76 ], | 76 ], |
77 }, | 77 }, |
78 | 78 |
79 { | 79 { |
80 'target_name': 'RTPjitter', | 80 'target_name': 'RTPjitter', |
81 'type': 'executable', | 81 'type': 'executable', |
82 'dependencies': [ | 82 'dependencies': [ |
| 83 '<(webrtc_root)/common.gyp:webrtc_common', |
83 '<(DEPTH)/testing/gtest.gyp:gtest', | 84 '<(DEPTH)/testing/gtest.gyp:gtest', |
84 ], | 85 ], |
85 'sources': [ | 86 'sources': [ |
86 'test/RTPjitter.cc', | 87 'test/RTPjitter.cc', |
87 ], | 88 ], |
88 }, | 89 }, |
89 | 90 |
90 { | 91 { |
91 'target_name': 'rtp_analyze', | 92 'target_name': 'rtp_analyze', |
92 'type': 'executable', | 93 'type': 'executable', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 'test/NETEQTEST_RTPpacket.cc', | 299 'test/NETEQTEST_RTPpacket.cc', |
299 'test/NETEQTEST_RTPpacket.h', | 300 'test/NETEQTEST_RTPpacket.h', |
300 ], | 301 ], |
301 # Disable warnings to enable Win64 build, issue 1323. | 302 # Disable warnings to enable Win64 build, issue 1323. |
302 'msvs_disabled_warnings': [ | 303 'msvs_disabled_warnings': [ |
303 4267, # size_t to int truncation. | 304 4267, # size_t to int truncation. |
304 ], | 305 ], |
305 }, | 306 }, |
306 ], # targets | 307 ], # targets |
307 } | 308 } |
OLD | NEW |