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

Unified Diff: webrtc/tools/tools.gyp

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved to webrtc/tools and updated build system Created 4 years, 6 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
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', {

Powered by Google App Engine
This is Rietveld 408576698