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("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "event_log_visualizer/plot_protobuf.h", | 195 "event_log_visualizer/plot_protobuf.h", |
196 "event_log_visualizer/plot_python.cc", | 196 "event_log_visualizer/plot_python.cc", |
197 "event_log_visualizer/plot_python.h", | 197 "event_log_visualizer/plot_python.h", |
198 ] | 198 ] |
199 if (!build_with_chromium && is_clang) { | 199 if (!build_with_chromium && is_clang) { |
200 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 200 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
201 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 201 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
202 } | 202 } |
203 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 203 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
204 deps = [ | 204 deps = [ |
205 "../base:protobuf_utils", | |
206 "../call:call_interfaces", | 205 "../call:call_interfaces", |
207 "../logging:rtc_event_log_impl", | 206 "../logging:rtc_event_log_impl", |
208 "../logging:rtc_event_log_parser", | 207 "../logging:rtc_event_log_parser", |
209 "../modules/audio_coding:ana_debug_dump_proto", | 208 "../modules/audio_coding:ana_debug_dump_proto", |
210 | 209 |
211 # TODO(kwiberg): Remove this dependency. | 210 # TODO(kwiberg): Remove this dependency. |
212 "../api/audio_codecs:audio_codecs_api", | 211 "../api/audio_codecs:audio_codecs_api", |
213 "../modules/congestion_controller", | 212 "../modules/congestion_controller", |
214 "../modules/rtp_rtcp", | 213 "../modules/rtp_rtcp", |
215 "../system_wrappers:system_wrappers_default", | 214 "../system_wrappers:system_wrappers_default", |
(...skipping 16 matching lines...) Expand all Loading... |
232 ] | 231 ] |
233 | 232 |
234 if (!build_with_chromium && is_clang) { | 233 if (!build_with_chromium && is_clang) { |
235 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 234 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
236 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 235 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
237 } | 236 } |
238 | 237 |
239 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 238 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
240 deps = [ | 239 deps = [ |
241 ":event_log_visualizer_utils", | 240 ":event_log_visualizer_utils", |
242 "../base:protobuf_utils", | |
243 "../test:field_trial", | 241 "../test:field_trial", |
244 "//third_party/gflags", | 242 "//third_party/gflags", |
245 ] | 243 ] |
246 } | 244 } |
247 } | 245 } |
248 | 246 |
249 rtc_executable("activity_metric") { | 247 rtc_executable("activity_metric") { |
250 testonly = true | 248 testonly = true |
251 sources = [ | 249 sources = [ |
252 "agc/activity_metric.cc", | 250 "agc/activity_metric.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 sources = [ | 322 sources = [ |
325 "py_event_log_analyzer/misc.py", | 323 "py_event_log_analyzer/misc.py", |
326 "py_event_log_analyzer/pb_parse.py", | 324 "py_event_log_analyzer/pb_parse.py", |
327 "py_event_log_analyzer/rtp_analyzer.py", | 325 "py_event_log_analyzer/rtp_analyzer.py", |
328 "py_event_log_analyzer/rtp_analyzer.sh", | 326 "py_event_log_analyzer/rtp_analyzer.sh", |
329 ] | 327 ] |
330 outputs = [ | 328 outputs = [ |
331 "$root_build_dir/{{source_file_part}}", | 329 "$root_build_dir/{{source_file_part}}", |
332 ] | 330 ] |
333 deps = [ | 331 deps = [ |
334 "../base:protobuf_utils", | |
335 "../logging:rtc_event_log_proto", | 332 "../logging:rtc_event_log_proto", |
336 ] | 333 ] |
337 } | 334 } |
338 } | 335 } |
339 } | 336 } |
OLD | NEW |