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

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: 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/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index a9fe473941c8a0e12bd2afb7b0ca37e1435c342e..6784aa562f3390340d4107620d5916ccd1b9c3f8 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -279,4 +279,25 @@ if (rtc_include_tests) {
deps += [ "//testing/android/native_test:native_test_support" ]
}
}
+
+ if (rtc_enable_protobuf) {
+ group("rtp_analyzer") {
kjellander_webrtc 2016/06/15 14:46:53 Please remove this group target. You can add a dep
aleloi 2016/06/16 11:15:28 Done.
+ deps = [
+ ":rtp_analyzer-copy",
+ "../:rtc_event_log_proto",
kjellander_webrtc 2016/06/15 14:46:53 nit: ..:rtc_event_log_proto is sufficient.
aleloi 2016/06/16 11:15:28 Done.
+ ]
+ }
+
+ copy("rtp_analyzer-copy") {
kjellander_webrtc 2016/06/15 14:46:53 After addressing the above comments, rename this t
aleloi 2016/06/16 11:15:27 Done.
+ 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}}",
+ ]
+ }
+ }
}

Powered by Google App Engine
This is Rietveld 408576698