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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 'test/RTPtimeshift.cc', | 124 'test/RTPtimeshift.cc', |
125 ], | 125 ], |
126 }, | 126 }, |
127 | 127 |
128 { | 128 { |
129 'target_name': 'rtpcat', | 129 'target_name': 'rtpcat', |
130 'type': 'executable', | 130 'type': 'executable', |
131 'dependencies': [ | 131 'dependencies': [ |
132 '<(DEPTH)/testing/gtest.gyp:gtest', | 132 '<(DEPTH)/testing/gtest.gyp:gtest', |
133 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | 133 '<(webrtc_root)/test/test.gyp:rtp_test_utils', |
| 134 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa
ult', |
134 ], | 135 ], |
135 'sources': [ | 136 'sources': [ |
136 'tools/rtpcat.cc', | 137 'tools/rtpcat.cc', |
137 ], | 138 ], |
138 }, | 139 }, |
139 | 140 |
140 { | 141 { |
141 'target_name': 'rtp_to_text', | 142 'target_name': 'rtp_to_text', |
142 'type': 'executable', | 143 'type': 'executable', |
143 'dependencies': [ | 144 'dependencies': [ |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 'test/NETEQTEST_RTPpacket.cc', | 298 'test/NETEQTEST_RTPpacket.cc', |
298 'test/NETEQTEST_RTPpacket.h', | 299 'test/NETEQTEST_RTPpacket.h', |
299 ], | 300 ], |
300 # Disable warnings to enable Win64 build, issue 1323. | 301 # Disable warnings to enable Win64 build, issue 1323. |
301 'msvs_disabled_warnings': [ | 302 'msvs_disabled_warnings': [ |
302 4267, # size_t to int truncation. | 303 4267, # size_t to int truncation. |
303 ], | 304 ], |
304 }, | 305 }, |
305 ], # targets | 306 ], # targets |
306 } | 307 } |
OLD | NEW |