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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 # TODO(terelius): This tool requires the include_test condition to | 103 # TODO(terelius): This tool requires the include_test condition to |
104 # prevent build errors when gflags isn't found in downstream projects. | 104 # prevent build errors when gflags isn't found in downstream projects. |
105 # There should be a cleaner way to do this. The tool is not test related. | 105 # There should be a cleaner way to do this. The tool is not test related. |
106 'targets': [ | 106 'targets': [ |
107 { | 107 { |
108 # This target should only be built if enable_protobuf is set | 108 # This target should only be built if enable_protobuf is set |
109 'target_name': 'event_log_visualizer', | 109 'target_name': 'event_log_visualizer', |
110 'type': 'executable', | 110 'type': 'executable', |
111 'dependencies': [ | 111 'dependencies': [ |
112 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | 112 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
113 '<(webrtc_root)/modules/modules.gyp:congestion_controller', | |
113 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', | 114 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
114 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default' , | 115 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default' , |
116 '<(webrtc_root)/test/test.gyp:field_trial', | |
phoglund
2016/07/28 10:21:41
This appears to be not needed in the gn file?
stefan-webrtc
2016/07/28 13:47:23
It is needed for gn.
| |
115 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 117 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
116 ], | 118 ], |
117 'sources': [ | 119 'sources': [ |
118 'event_log_visualizer/analyzer.cc', | 120 'event_log_visualizer/analyzer.cc', |
119 'event_log_visualizer/analyzer.h', | 121 'event_log_visualizer/analyzer.h', |
120 'event_log_visualizer/generate_timeseries.cc', | 122 'event_log_visualizer/generate_timeseries.cc', |
121 'event_log_visualizer/plot_base.h', | 123 'event_log_visualizer/plot_base.h', |
122 'event_log_visualizer/plot_python.cc', | 124 'event_log_visualizer/plot_python.cc', |
123 'event_log_visualizer/plot_python.h', | 125 'event_log_visualizer/plot_python.h', |
124 ], | 126 ], |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
271 'sources': [ | 273 'sources': [ |
272 'tools_unittests.isolate', | 274 'tools_unittests.isolate', |
273 ], | 275 ], |
274 }, | 276 }, |
275 ], | 277 ], |
276 }], | 278 }], |
277 ], | 279 ], |
278 }], # include_tests | 280 }], # include_tests |
279 ], # conditions | 281 ], # conditions |
280 } | 282 } |
OLD | NEW |