| 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': [ |
| 11 ['enable_protobuf==1', { | 11 ['enable_protobuf==1', { |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'rtc_event_log_source', | |
| 15 'type': 'static_library', | |
| 16 'dependencies': [ | |
| 17 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | |
| 18 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto', | |
| 19 ], | |
| 20 'export_dependent_settings': [ | |
| 21 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | |
| 22 ], | |
| 23 'sources': [ | |
| 24 'tools/rtc_event_log_source.h', | |
| 25 'tools/rtc_event_log_source.cc', | |
| 26 ], | |
| 27 }, | |
| 28 { | |
| 29 'target_name': 'neteq_rtpplay', | 14 'target_name': 'neteq_rtpplay', |
| 30 'type': 'executable', | 15 'type': 'executable', |
| 31 'dependencies': [ | 16 'dependencies': [ |
| 32 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 17 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 33 '<(webrtc_root)/test/test.gyp:test_support', | 18 '<(webrtc_root)/test/test.gyp:test_support', |
| 34 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, | 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, |
| 35 'rtc_event_log_source', | |
| 36 'neteq', | 20 'neteq', |
| 37 'neteq_unittest_tools', | 21 'neteq_unittest_tools', |
| 38 'pcm16b', | |
| 39 ], | 22 ], |
| 40 'sources': [ | 23 'sources': [ |
| 41 'tools/neteq_rtpplay.cc', | 24 'tools/neteq_rtpplay.cc', |
| 42 ], | 25 ], |
| 43 'defines': [ | 26 'defines': [ |
| 44 ], | 27 ], |
| 45 }, # neteq_rtpplay | 28 }, # neteq_rtpplay |
| 46 { | |
| 47 'target_name': 'neteq_unittest_proto', | |
| 48 'type': 'static_library', | |
| 49 'sources': [ | |
| 50 'neteq_unittest.proto', | |
| 51 ], | |
| 52 'variables': { | |
| 53 'proto_in_dir': '.', | |
| 54 # Workaround to protect against gyp's pathname relativization when | |
| 55 # this file is included by modules.gyp. | |
| 56 'proto_out_protected': 'webrtc/audio_coding/neteq', | |
| 57 'proto_out_dir': '<(proto_out_protected)', | |
| 58 }, | |
| 59 'includes': ['../../../build/protoc.gypi',], | |
| 60 }, | |
| 61 ], | 29 ], |
| 62 }], | 30 }], |
| 63 ], | 31 ], |
| 64 'targets': [ | 32 'targets': [ |
| 65 { | 33 { |
| 66 'target_name': 'RTPencode', | 34 'target_name': 'RTPencode', |
| 67 'type': 'executable', | 35 'type': 'executable', |
| 68 'dependencies': [ | 36 'dependencies': [ |
| 69 # TODO(hlundin): Make RTPencode use ACM to encode files. | 37 # TODO(hlundin): Make RTPencode use ACM to encode files. |
| 70 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 38 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 'test/NETEQTEST_RTPpacket.cc', | 297 'test/NETEQTEST_RTPpacket.cc', |
| 330 'test/NETEQTEST_RTPpacket.h', | 298 'test/NETEQTEST_RTPpacket.h', |
| 331 ], | 299 ], |
| 332 # Disable warnings to enable Win64 build, issue 1323. | 300 # Disable warnings to enable Win64 build, issue 1323. |
| 333 'msvs_disabled_warnings': [ | 301 'msvs_disabled_warnings': [ |
| 334 4267, # size_t to int truncation. | 302 4267, # size_t to int truncation. |
| 335 ], | 303 ], |
| 336 }, | 304 }, |
| 337 ], # targets | 305 ], # targets |
| 338 } | 306 } |
| OLD | NEW |