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 21 matching lines...) Expand all Loading... |
32 'neteq', | 32 'neteq', |
33 'neteq_unittest_tools', | 33 'neteq_unittest_tools', |
34 'pcm16b', | 34 'pcm16b', |
35 ], | 35 ], |
36 'sources': [ | 36 'sources': [ |
37 'tools/neteq_rtpplay.cc', | 37 'tools/neteq_rtpplay.cc', |
38 ], | 38 ], |
39 'defines': [ | 39 'defines': [ |
40 ], | 40 ], |
41 }, # neteq_rtpplay | 41 }, # neteq_rtpplay |
| 42 { |
| 43 'target_name': 'neteq_unittest_proto', |
| 44 'type': 'static_library', |
| 45 'sources': [ |
| 46 'neteq_unittest.proto', |
| 47 ], |
| 48 'variables': { |
| 49 'proto_in_dir': '.', |
| 50 # Workaround to protect against gyp's pathname relativization when |
| 51 # this file is included by modules.gyp. |
| 52 'proto_out_protected': 'webrtc/audio_coding/neteq', |
| 53 'proto_out_dir': '<(proto_out_protected)', |
| 54 }, |
| 55 'includes': ['../../../build/protoc.gypi',], |
| 56 }, |
42 ], | 57 ], |
43 }], | 58 }], |
44 ], | 59 ], |
45 'targets': [ | 60 'targets': [ |
46 { | 61 { |
47 'target_name': 'RTPencode', | 62 'target_name': 'RTPencode', |
48 'type': 'executable', | 63 'type': 'executable', |
49 'dependencies': [ | 64 'dependencies': [ |
50 # TODO(hlundin): Make RTPencode use ACM to encode files. | 65 # TODO(hlundin): Make RTPencode use ACM to encode files. |
51 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 66 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 'test/NETEQTEST_RTPpacket.cc', | 325 'test/NETEQTEST_RTPpacket.cc', |
311 'test/NETEQTEST_RTPpacket.h', | 326 'test/NETEQTEST_RTPpacket.h', |
312 ], | 327 ], |
313 # Disable warnings to enable Win64 build, issue 1323. | 328 # Disable warnings to enable Win64 build, issue 1323. |
314 'msvs_disabled_warnings': [ | 329 'msvs_disabled_warnings': [ |
315 4267, # size_t to int truncation. | 330 4267, # size_t to int truncation. |
316 ], | 331 ], |
317 }, | 332 }, |
318 ], # targets | 333 ], # targets |
319 } | 334 } |
OLD | NEW |