Chromium Code Reviews| 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': [ | |
| 11 ['enable_protobuf==1', { | |
|
hlundin-webrtc
2015/08/28 12:06:24
Hmm, does this mean that neteq_rtpplay is only bui
ivoc
2015/09/01 10:03:50
Yes, it's either this or sprinkle a bunch of #ifde
| |
| 12 'targets': [ | |
| 13 { | |
| 14 'target_name': 'rtc_event_log_source', | |
| 15 'type': 'static_library', | |
| 16 'dependencies': [ | |
| 17 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | |
| 18 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto', | |
| 19 ], | |
| 20 'sources': [ | |
| 21 'tools/rtc_event_log_source.h', | |
| 22 'tools/rtc_event_log_source.cc', | |
| 23 ], | |
| 24 }, | |
| 25 { | |
| 26 'target_name': 'neteq_rtpplay', | |
| 27 'type': 'executable', | |
| 28 'dependencies': [ | |
| 29 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
| 30 '<(webrtc_root)/test/test.gyp:test_support_main', | |
| 31 'rtc_event_log_source', | |
| 32 'neteq', | |
| 33 'neteq_unittest_tools', | |
| 34 'pcm16b', | |
| 35 ], | |
| 36 'sources': [ | |
| 37 'tools/neteq_rtpplay.cc', | |
| 38 ], | |
| 39 'defines': [ | |
| 40 ], | |
| 41 }, # neteq_rtpplay | |
| 42 ], | |
| 43 }], | |
| 44 ], | |
| 10 'targets': [ | 45 'targets': [ |
| 11 { | 46 { |
| 12 'target_name': 'neteq_rtpplay', | |
| 13 'type': 'executable', | |
| 14 'dependencies': [ | |
| 15 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
| 16 '<(webrtc_root)/test/test.gyp:test_support_main', | |
| 17 'neteq', | |
| 18 'neteq_unittest_tools', | |
| 19 'pcm16b', | |
| 20 ], | |
| 21 'sources': [ | |
| 22 'tools/neteq_rtpplay.cc', | |
| 23 ], | |
| 24 'defines': [ | |
| 25 ], | |
| 26 }, # neteq_rtpplay | |
| 27 | |
| 28 { | |
| 29 'target_name': 'RTPencode', | 47 'target_name': 'RTPencode', |
| 30 'type': 'executable', | 48 'type': 'executable', |
| 31 'dependencies': [ | 49 'dependencies': [ |
| 32 # TODO(hlundin): Make RTPencode use ACM to encode files. | 50 # TODO(hlundin): Make RTPencode use ACM to encode files. |
| 33 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 51 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 34 'cng', | 52 'cng', |
| 35 'g711', | 53 'g711', |
| 36 'g722', | 54 'g722', |
| 37 'ilbc', | 55 'ilbc', |
| 38 'isac', | 56 'isac', |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 290 'test/NETEQTEST_RTPpacket.cc', | 308 'test/NETEQTEST_RTPpacket.cc', |
| 291 'test/NETEQTEST_RTPpacket.h', | 309 'test/NETEQTEST_RTPpacket.h', |
| 292 ], | 310 ], |
| 293 # Disable warnings to enable Win64 build, issue 1323. | 311 # Disable warnings to enable Win64 build, issue 1323. |
| 294 'msvs_disabled_warnings': [ | 312 'msvs_disabled_warnings': [ |
| 295 4267, # size_t to int truncation. | 313 4267, # size_t to int truncation. |
| 296 ], | 314 ], |
| 297 }, | 315 }, |
| 298 ], # targets | 316 ], # targets |
| 299 } | 317 } |
| OLD | NEW |