Index: webrtc/tools/tools.gyp |
diff --git a/webrtc/tools/tools.gyp b/webrtc/tools/tools.gyp |
index 977ea00a0f6c640729e31f1810d3b1d88dcabc5e..9cb8afa92e9fe6a504db441e43e0e857ae0d249c 100644 |
--- a/webrtc/tools/tools.gyp |
+++ b/webrtc/tools/tools.gyp |
@@ -97,6 +97,28 @@ |
'force_mic_volume_max/force_mic_volume_max.cc', |
], |
}, # force_mic_volume_max |
+ { |
+ 'target_name': 'rtp_analyzer', |
kjellander_webrtc
2016/06/15 14:46:54
Please move this inside the include_tests conditio
aleloi
2016/06/16 11:15:28
Done.
|
+ 'type': 'none', |
+ 'variables': { |
+ 'copy_output_dir%': '<(PRODUCT_DIR)', |
+ }, |
+ 'copies': [ |
+ { |
+ 'destination': '<(copy_output_dir)/', |
+ 'files': [ |
+ 'py_event_log_analyzer/misc.py', |
+ 'py_event_log_analyzer/pb_parse.py', |
+ 'py_event_log_analyzer/rtp_analyzer.py', |
+ 'py_event_log_analyzer/rtp_analyzer.sh', |
+ ] |
+ }, |
+ ], |
+ 'process_outputs_as_sources': 1, |
+ 'dependencies': [ |
+ '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto', |
kjellander_webrtc
2016/06/16 11:44:42
Didn't you want to keep this dependency? Since the
aleloi
2016/06/16 12:18:57
Yes, thank you! Fixed in next patch set.
|
+ ], |
+ }, # rtp_analyzer |
], |
'conditions': [ |
['include_tests==1', { |