| 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', | 14 'target_name': 'rtc_event_log_source', |
| 15 'type': 'static_library', | 15 'type': 'static_library', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | 17 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
| 18 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto', | 18 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto', |
| 19 ], | 19 ], |
| 20 'export_dependent_settings': [ |
| 21 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
| 22 ], |
| 20 'sources': [ | 23 'sources': [ |
| 21 'tools/rtc_event_log_source.h', | 24 'tools/rtc_event_log_source.h', |
| 22 'tools/rtc_event_log_source.cc', | 25 'tools/rtc_event_log_source.cc', |
| 23 ], | 26 ], |
| 24 }, | 27 }, |
| 25 { | 28 { |
| 26 'target_name': 'neteq_rtpplay', | 29 'target_name': 'neteq_rtpplay', |
| 27 'type': 'executable', | 30 'type': 'executable', |
| 28 'dependencies': [ | 31 'dependencies': [ |
| 29 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 32 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 'test/NETEQTEST_RTPpacket.cc', | 328 'test/NETEQTEST_RTPpacket.cc', |
| 326 'test/NETEQTEST_RTPpacket.h', | 329 'test/NETEQTEST_RTPpacket.h', |
| 327 ], | 330 ], |
| 328 # Disable warnings to enable Win64 build, issue 1323. | 331 # Disable warnings to enable Win64 build, issue 1323. |
| 329 'msvs_disabled_warnings': [ | 332 'msvs_disabled_warnings': [ |
| 330 4267, # size_t to int truncation. | 333 4267, # size_t to int truncation. |
| 331 ], | 334 ], |
| 332 }, | 335 }, |
| 333 ], # targets | 336 ], # targets |
| 334 } | 337 } |
| OLD | NEW |