Index: webrtc/call/BUILD.gn |
diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn |
index 648bc85e0fc130a88fdd144cca54a1f35ccdccf2..bd2b30e57003e9d4a59927f3980208c4da807de3 100644 |
--- a/webrtc/call/BUILD.gn |
+++ b/webrtc/call/BUILD.gn |
@@ -23,11 +23,11 @@ rtc_static_library("call") { |
} |
deps = [ |
- ":rtc_event_log", |
"..:webrtc_common", |
"../api:call_api", |
"../audio", |
"../base:rtc_task_queue", |
+ "../logging:rtc_event_log_impl", |
"../modules/congestion_controller", |
"../modules/rtp_rtcp", |
"../system_wrappers", |
@@ -35,32 +35,6 @@ rtc_static_library("call") { |
] |
} |
-rtc_static_library("rtc_event_log") { |
- sources = [ |
- "rtc_event_log.cc", |
- "rtc_event_log.h", |
- "rtc_event_log_helper_thread.cc", |
- "rtc_event_log_helper_thread.h", |
- ] |
- |
- defines = [] |
- |
- deps = [ |
- "..:webrtc_common", |
- "../modules/rtp_rtcp", |
- ] |
- |
- if (rtc_enable_protobuf) { |
- defines += [ "ENABLE_RTC_EVENT_LOG" ] |
- deps += [ "..:rtc_event_log_proto" ] |
- } |
- if (is_clang && !is_nacl) { |
- # Suppress warnings from Chrome's Clang plugins. |
- # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
- suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
- } |
-} |
- |
if (rtc_include_tests) { |
rtc_source_set("call_tests") { |
testonly = true |
@@ -69,7 +43,6 @@ if (rtc_include_tests) { |
"bitrate_estimator_tests.cc", |
"call_unittest.cc", |
"packet_injection_tests.cc", |
- "ringbuffer_unittest.cc", |
] |
deps = [ |
":call", |
@@ -82,24 +55,4 @@ if (rtc_include_tests) { |
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
} |
} |
- rtc_source_set("rtc_event_log_tests") { |
- testonly = true |
- sources = [ |
- "rtc_event_log_unittest.cc", |
- "rtc_event_log_unittest_helper.cc", |
- ] |
- deps = [ |
- ":rtc_event_log", |
- "..:rtc_event_log_parser", |
- "../modules/rtp_rtcp", |
- "../system_wrappers:metrics_default", |
- "//testing/gmock", |
- "//testing/gtest", |
- ] |
- if (is_clang) { |
- # Suppress warnings from the Chromium Clang plugin. |
- # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
- suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
- } |
- } |
} |