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