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

Unified Diff: webrtc/BUILD.gn

Issue 1768773002: New parser for event log. Manually parse the outermost EventStream (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move parser to its own build target. Fix comments from Henrik. Created 4 years, 9 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/call/rtc_event_log2rtp_dump.cc » ('j') | webrtc/call/rtc_event_log2rtp_dump.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 9f4fd5c7a6684bdf9642cb50e41bc429b353a8a6..31ba17dc918e2ecfefc2a305d8423b28e1bd08e9 100644
--- a/webrtc/BUILD.gn
+++ b/webrtc/BUILD.gn
@@ -281,6 +281,29 @@ source_set("rtc_event_log") {
}
}
+if (rtc_enable_protobuf) {
+ source_set("rtc_event_log_parser") {
+ sources = [
+ "call/rtc_event_log_parser.cc",
+ "call/rtc_event_log_parser.h",
+ ]
+
+ configs += [ ":common_config" ]
+ public_configs = [ ":common_inherited_config" ]
+
+ 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.
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+ }
+}
+
if (use_libfuzzer || use_drfuzz) {
# This target is only here for gn to discover fuzzer build targets under
# webrtc/test/fuzzers/.
« no previous file with comments | « no previous file | webrtc/call/rtc_event_log2rtp_dump.cc » ('j') | webrtc/call/rtc_event_log2rtp_dump.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698