Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1638)

Unified Diff: webrtc/call/BUILD.gn

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/audio/webrtc_audio.gypi ('k') | webrtc/call/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
- }
- }
}
« no previous file with comments | « webrtc/audio/webrtc_audio.gypi ('k') | webrtc/call/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698