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

Unified Diff: webrtc/tools/tools.gyp

Issue 1995523002: Visualization tool for WebrtcEventLogs (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add rtc_event_log_proto to the public_deps of rtc_event_log_parser. Created 4 years, 5 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
« webrtc/BUILD.gn ('K') | « webrtc/tools/event_log_visualizer/plot_python.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/tools.gyp
diff --git a/webrtc/tools/tools.gyp b/webrtc/tools/tools.gyp
index 998319e31fc51692053fe4b2b940e1d7615d8429..fda6b0512a13ad7044a0258d0f3846316f9e9e7b 100644
--- a/webrtc/tools/tools.gyp
+++ b/webrtc/tools/tools.gyp
@@ -99,6 +99,29 @@
}, # force_mic_volume_max
],
'conditions': [
+ ['enable_protobuf==1', {
+ 'targets': [
+ {
+ # This target should only be built if enable_protobuf is set
+ 'target_name': 'event_log_visualizer',
+ 'type': 'executable',
+ 'dependencies': [
+ '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
+ '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
+ '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
+ '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
+ ],
+ 'sources': [
+ 'event_log_visualizer/analyzer.cc',
+ 'event_log_visualizer/analyzer.h',
+ 'event_log_visualizer/generate_timeseries.cc',
+ 'event_log_visualizer/plot_base.h',
+ 'event_log_visualizer/plot_python.cc',
+ 'event_log_visualizer/plot_python.h',
+ ],
+ },
+ ],
+ }],
['include_tests==1', {
'targets' : [
{
« webrtc/BUILD.gn ('K') | « webrtc/tools/event_log_visualizer/plot_python.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698