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

Unified Diff: webrtc/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 | « no previous file | webrtc/audio/webrtc_audio.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/BUILD.gn
diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn
index aaea4e3b9df0b98053e0f61ca7693d58450fb8b2..a97d508d4dc7aa562ac6e9c32c4f48c16a12e8db 100644
--- a/webrtc/BUILD.gn
+++ b/webrtc/BUILD.gn
@@ -283,7 +283,7 @@ if (!is_ios || !build_with_chromium) {
if (rtc_enable_protobuf) {
defines += [ "ENABLE_RTC_EVENT_LOG" ]
- deps += [ ":rtc_event_log_proto" ]
+ deps += [ "logging:rtc_event_log_proto" ]
}
}
}
@@ -305,35 +305,6 @@ rtc_static_library("webrtc_common") {
}
}
-if (rtc_enable_protobuf) {
- proto_library("rtc_event_log_proto") {
- sources = [
- "call/rtc_event_log.proto",
- ]
- proto_out_dir = "webrtc/call"
- }
-}
-
-if (rtc_enable_protobuf) {
- rtc_static_library("rtc_event_log_parser") {
- sources = [
- "call/rtc_event_log_parser.cc",
- "call/rtc_event_log_parser.h",
- ]
-
- public_deps = [
- ":rtc_event_log_proto",
- ":webrtc_common",
- ]
-
- 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 (use_libfuzzer || use_drfuzz || use_afl) {
# This target is only here for gn to discover fuzzer build targets under
# webrtc/test/fuzzers/.
@@ -529,7 +500,7 @@ if (rtc_include_tests) {
]
if (rtc_enable_protobuf) {
- deps += [ "call:rtc_event_log_tests" ]
+ deps += [ "logging:rtc_event_log_tests" ]
}
if (is_android) {
« no previous file with comments | « no previous file | webrtc/audio/webrtc_audio.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698