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

Unified Diff: webrtc/webrtc.gyp

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added copying to BUILD.gn Created 4 years, 7 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
« tools/py_event_log_analyzer/rtp_analyzer.py ('K') | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/webrtc.gyp
diff --git a/webrtc/webrtc.gyp b/webrtc/webrtc.gyp
index 793bf96335ef40f24c6c8fdef4852f912632ef52..e7bfbd54f9bee6e8c66f7deef51e9103178b7664 100644
--- a/webrtc/webrtc.gyp
+++ b/webrtc/webrtc.gyp
@@ -191,6 +191,35 @@
}],
],
},
-
+ {
+ 'target_name': 'rtp_analyzer',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'copy_py_scripts',
+ 'variables': {
+ 'copy_output_dir%': '<(PRODUCT_DIR)',
+ },
+ 'inputs': [
+ '<(DEPTH)/tools/py_event_log_analyzer/pb_parse.py',
+ '<(DEPTH)/tools/py_event_log_analyzer/misc.py',
+ '<(DEPTH)/tools/py_event_log_analyzer/rtp_analyzer.py',
+ '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py',
+ ],
+ 'outputs': [
+ '<(copy_output_dir)',
+ ],
+ 'action': ['python',
+ '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py',
+ '--input_dir=<(DEPTH)/tools/py_event_log_analyzer/',
+ '--output_dir=<(copy_output_dir)'],
+ 'message': 'Copying *py files code to <(copy_output_dir)',
+ 'process_outputs_as_sources': 1,
+ },
+ ],
+ 'dependencies': [
+ 'rtc_event_log_proto',
+ ],
+ },
],
}
« tools/py_event_log_analyzer/rtp_analyzer.py ('K') | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698