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

Unified Diff: webrtc/BUILD.gn

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Updated GYP files Created 4 years, 3 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') | webrtc/logging/rtc_event_log/ringbuffer_unittest.cc » ('J')
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 4eeba6aa84192f31df2ec79983a96a7837936363..432fb0c1a2a1fa19be91e3f40f2b5ed04a29f5eb 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/.
@@ -528,7 +499,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') | webrtc/logging/rtc_event_log/ringbuffer_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698