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

Unified Diff: webrtc/logging/BUILD.gn

Issue 2629353004: Added gn target for rtc_event_log2rtp_dump. (Closed)
Patch Set: Created 3 years, 11 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/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/logging/BUILD.gn
diff --git a/webrtc/logging/BUILD.gn b/webrtc/logging/BUILD.gn
index 2daaef4ffcf8ef26d5cdfe54df9c4f789774e440..d00ae4697cb5fdb4c2e31321c0cd40df1c4ba6f1 100644
--- a/webrtc/logging/BUILD.gn
+++ b/webrtc/logging/BUILD.gn
@@ -106,3 +106,26 @@ if (rtc_enable_protobuf) {
}
}
}
+
+if (rtc_enable_protobuf && rtc_include_tests) {
kjellander_webrtc 2017/01/16 07:49:53 Please just add a if (rtc_include_tests) block ins
ivoc 2017/01/17 04:11:29 Done.
+ rtc_test("rtc_event_log2rtp_dump") {
+ testonly = true
+ sources = [
+ "rtc_event_log/rtc_event_log2rtp_dump.cc",
+ ]
+ deps = [
+ ":rtc_event_log_api",
+ ":rtc_event_log_impl",
+ ":rtc_event_log_parser",
+ "../base:rtc_base_approved",
+ "../call:call_interfaces",
+ "../modules/rtp_rtcp:rtp_rtcp",
+ "../test:rtp_test_utils",
+ "//third_party/gflags",
+ ]
+ if (!build_with_chromium && is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
+ suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
+ }
+ }
+}
« no previous file with comments | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698