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

Side by Side Diff: webrtc/tools/tools.gyp

Issue 1995523002: Visualization tool for WebrtcEventLogs (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More review comments 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'dependencies': [ 92 'dependencies': [
93 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 93 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
94 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult', 94 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult',
95 ], 95 ],
96 'sources': [ 96 'sources': [
97 'force_mic_volume_max/force_mic_volume_max.cc', 97 'force_mic_volume_max/force_mic_volume_max.cc',
98 ], 98 ],
99 }, # force_mic_volume_max 99 }, # force_mic_volume_max
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 ['enable_protobuf==1', {
103 'targets': [
104 {
105 # This target should only be built if enable_protobuf is set
106 'target_name': 'event_log_visualizer',
107 'type': 'executable',
108 'dependencies': [
109 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
110 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
111 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default' ,
112 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
113 ],
114 'sources': [
115 'event_log_visualizer/analyzer.cc',
116 'event_log_visualizer/analyzer.h',
117 'event_log_visualizer/generate_timeseries.cc',
118 'event_log_visualizer/plot_base.h',
119 'event_log_visualizer/plot_python.cc',
120 'event_log_visualizer/plot_python.h',
121 ],
122 },
123 ],
124 }],
102 ['include_tests==1', { 125 ['include_tests==1', {
103 'targets' : [ 126 'targets' : [
104 { 127 {
105 'target_name': 'agc_test_utils', 128 'target_name': 'agc_test_utils',
106 'type': 'static_library', 129 'type': 'static_library',
107 'sources': [ 130 'sources': [
108 'agc/test_utils.cc', 131 'agc/test_utils.cc',
109 'agc/test_utils.h', 132 'agc/test_utils.h',
110 ], 133 ],
111 }, 134 },
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 'sources': [ 268 'sources': [
246 'tools_unittests.isolate', 269 'tools_unittests.isolate',
247 ], 270 ],
248 }, 271 },
249 ], 272 ],
250 }], 273 }],
251 ], 274 ],
252 }], # include_tests 275 }], # include_tests
253 ], # conditions 276 ], # conditions
254 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698