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

Unified Diff: webrtc/tools/BUILD.gn

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added protobuf dependency back. 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
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/tools/py_event_log_analyzer/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index a9fe473941c8a0e12bd2afb7b0ca37e1435c342e..2d095636dfa424de569660555b78294b08e2eccd 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -279,4 +279,21 @@ if (rtc_include_tests) {
deps += [ "//testing/android/native_test:native_test_support" ]
}
}
+
+ if (rtc_enable_protobuf) {
+ copy("rtp_analyzer") {
+ sources = [
+ "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",
+ ]
+ outputs = [
+ "$root_build_dir/{{source_file_part}}",
+ ]
+ deps = [
+ "..:rtc_event_log_proto",
+ ]
+ }
+ }
}
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/tools/py_event_log_analyzer/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698