OLD | NEW |
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', { | 102 ['enable_protobuf==1', { |
103 'targets': [ | 103 'targets': [ |
104 { | 104 { |
| 105 'target_name': 'graph_proto', |
| 106 'type': 'static_library', |
| 107 'sources': [ |
| 108 'event_log_visualizer/graph.proto', |
| 109 ], |
| 110 'variables': { |
| 111 'proto_in_dir': 'event_log_visualizer', |
| 112 'proto_out_dir': 'webrtc/tools/event_log_visualizer', |
| 113 }, |
| 114 'includes': ['../build/protoc.gypi'], |
| 115 }, |
| 116 { |
105 # RTC event log visualization library | 117 # RTC event log visualization library |
106 'target_name': 'event_log_visualizer_utils', | 118 'target_name': 'event_log_visualizer_utils', |
107 'type': 'static_library', | 119 'type': 'static_library', |
108 'dependencies': [ | 120 'dependencies': [ |
109 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | 121 '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
110 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | 122 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
111 '<(webrtc_root)/modules/modules.gyp:congestion_controller', | 123 '<(webrtc_root)/modules/modules.gyp:congestion_controller', |
112 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', | 124 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
113 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, | 125 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, |
| 126 ':graph_proto', |
114 ], | 127 ], |
115 'sources': [ | 128 'sources': [ |
116 'event_log_visualizer/analyzer.cc', | 129 'event_log_visualizer/analyzer.cc', |
117 'event_log_visualizer/analyzer.h', | 130 'event_log_visualizer/analyzer.h', |
118 'event_log_visualizer/plot_base.cc', | 131 'event_log_visualizer/plot_base.cc', |
119 'event_log_visualizer/plot_base.h', | 132 'event_log_visualizer/plot_base.h', |
| 133 'event_log_visualizer/plot_protobuf.cc', |
| 134 'event_log_visualizer/plot_protobuf.h', |
120 'event_log_visualizer/plot_python.cc', | 135 'event_log_visualizer/plot_python.cc', |
121 'event_log_visualizer/plot_python.h', | 136 'event_log_visualizer/plot_python.h', |
122 ], | 137 ], |
123 » 'export_dependent_settings': [ | 138 'export_dependent_settings': [ |
124 » '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | 139 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
125 » ], | 140 ':graph_proto', |
| 141 ], |
126 }, | 142 }, |
127 ], | 143 ], |
128 }], | 144 }], |
129 ['enable_protobuf==1 and include_tests==1', { | 145 ['enable_protobuf==1 and include_tests==1', { |
130 # TODO(terelius): This tool requires the include_test condition to | 146 # TODO(terelius): This tool requires the include_test condition to |
131 # prevent build errors when gflags isn't found in downstream projects. | 147 # prevent build errors when gflags isn't found in downstream projects. |
132 # There should be a cleaner way to do this. The tool is not test related. | 148 # There should be a cleaner way to do this. The tool is not test related. |
133 'targets': [ | 149 'targets': [ |
134 { | 150 { |
135 # Command line tool for RTC event log visualization | 151 # Command line tool for RTC event log visualization |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 'sources': [ | 308 'sources': [ |
293 'tools_unittests.isolate', | 309 'tools_unittests.isolate', |
294 ], | 310 ], |
295 }, | 311 }, |
296 ], | 312 ], |
297 }], | 313 }], |
298 ], | 314 ], |
299 }], # include_tests | 315 }], # include_tests |
300 ], # conditions | 316 ], # conditions |
301 } | 317 } |
OLD | NEW |