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/. |