Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Unified Diff: webrtc/modules/audio_coding/neteq/neteq_tests.gypi

Issue 1316903002: Update to the neteq_rtpplay utility to support RtcEventLog input files. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/neteq/neteq_tests.gypi
diff --git a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi
index 4b0409216296235db2abaa3061ccd625a33615bf..50ebbd35ef2b9454b1b637815606cfba15547db0 100644
--- a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi
+++ b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi
@@ -7,25 +7,43 @@
# be found in the AUTHORS file in the root of the source tree.
{
+ 'conditions': [
+ ['enable_protobuf==1', {
+ 'targets': [
+ {
+ 'target_name': 'rtc_event_log_source',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(webrtc_root)/webrtc.gyp:rtc_event_log',
+ '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto',
+ ],
+ 'sources': [
+ 'tools/rtc_event_log_source.h',
+ 'tools/rtc_event_log_source.cc',
+ ],
+ },
+ {
+ 'target_name': 'neteq_rtpplay',
+ 'type': 'executable',
+ 'dependencies': [
+ '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
+ '<(webrtc_root)/test/test.gyp:test_support_main',
+ 'rtc_event_log_source',
+ 'neteq',
+ 'neteq_unittest_tools',
+ 'pcm16b',
+ ],
+ 'sources': [
+ 'tools/neteq_rtpplay.cc',
+ ],
+ 'defines': [
+ ],
+ }, # neteq_rtpplay
+ ],
+ }],
+ ],
'targets': [
{
- 'target_name': 'neteq_rtpplay',
- 'type': 'executable',
- 'dependencies': [
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(webrtc_root)/test/test.gyp:test_support_main',
- 'neteq',
- 'neteq_unittest_tools',
- 'pcm16b',
- ],
- 'sources': [
- 'tools/neteq_rtpplay.cc',
- ],
- 'defines': [
- ],
- }, # neteq_rtpplay
-
- {
'target_name': 'RTPencode',
'type': 'executable',
'dependencies': [
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698