OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "event_log_visualizer/plot_python.cc", | 157 "event_log_visualizer/plot_python.cc", |
158 "event_log_visualizer/plot_python.h", | 158 "event_log_visualizer/plot_python.h", |
159 ] | 159 ] |
160 if (is_clang && !is_nacl) { | 160 if (is_clang && !is_nacl) { |
161 # Suppress warnings from the Chromium Clang plugin. | 161 # Suppress warnings from the Chromium Clang plugin. |
162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
164 } | 164 } |
165 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 165 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
166 deps = [ | 166 deps = [ |
167 "../:rtc_event_log_parser", | 167 "../logging:rtc_event_log_impl", |
168 "../call:rtc_event_log", | 168 "../logging:rtc_event_log_parser", |
169 "../modules/congestion_controller:congestion_controller", | 169 "../modules/congestion_controller:congestion_controller", |
170 "../modules/rtp_rtcp:rtp_rtcp", | 170 "../modules/rtp_rtcp:rtp_rtcp", |
171 "../system_wrappers:system_wrappers_default", | 171 "../system_wrappers:system_wrappers_default", |
172 "//build/config/sanitizers:deps", | 172 "//build/config/sanitizers:deps", |
173 ] | 173 ] |
174 public_deps = [ | 174 public_deps = [ |
175 ":chart_proto", | 175 ":chart_proto", |
176 "../:rtc_event_log_parser", | 176 "../logging:rtc_event_log_parser", |
177 ] | 177 ] |
178 } | 178 } |
179 } | 179 } |
180 | 180 |
181 # Exclude tools depending on gflags since that's not available in Chromium. | 181 # Exclude tools depending on gflags since that's not available in Chromium. |
182 if (rtc_include_tests) { | 182 if (rtc_include_tests) { |
183 if (rtc_enable_protobuf) { | 183 if (rtc_enable_protobuf) { |
184 rtc_executable("event_log_visualizer") { | 184 rtc_executable("event_log_visualizer") { |
185 testonly = true | 185 testonly = true |
186 sources = [ | 186 sources = [ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 sources = [ | 275 sources = [ |
276 "py_event_log_analyzer/misc.py", | 276 "py_event_log_analyzer/misc.py", |
277 "py_event_log_analyzer/pb_parse.py", | 277 "py_event_log_analyzer/pb_parse.py", |
278 "py_event_log_analyzer/rtp_analyzer.py", | 278 "py_event_log_analyzer/rtp_analyzer.py", |
279 "py_event_log_analyzer/rtp_analyzer.sh", | 279 "py_event_log_analyzer/rtp_analyzer.sh", |
280 ] | 280 ] |
281 outputs = [ | 281 outputs = [ |
282 "$root_build_dir/{{source_file_part}}", | 282 "$root_build_dir/{{source_file_part}}", |
283 ] | 283 ] |
284 deps = [ | 284 deps = [ |
285 "..:rtc_event_log_proto", | 285 "../logging:rtc_event_log_proto", |
286 ] | 286 ] |
287 } | 287 } |
288 } | 288 } |
289 } | 289 } |
OLD | NEW |