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

Unified Diff: webrtc/logging/BUILD.gn

Issue 2629353004: Added gn target for rtc_event_log2rtp_dump. (Closed)
Patch Set: Review feedback. 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
« webrtc/BUILD.gn ('K') | « 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..77f31d465003d7b38b56c16efe2517e233f03ca9 100644
--- a/webrtc/logging/BUILD.gn
+++ b/webrtc/logging/BUILD.gn
@@ -105,4 +105,26 @@ if (rtc_enable_protobuf) {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
}
+ if (rtc_include_tests) {
+ rtc_test("rtc_event_log2rtp_dump") {
+ testonly = true
+ sources = [
+ "rtc_event_log/rtc_event_log2rtp_dump.cc",
+ ]
+ deps = [
+ ":rtc_event_log_api",
kjellander_webrtc 2017/01/19 07:23:47 The trybots seems to say you need to add a depende
kjellander_webrtc 2017/02/07 06:59:09 They're usually right :)
ivoc 2017/02/07 13:55:52 Done.
+ ":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" ]
kjellander_webrtc 2017/02/07 06:59:09 Is it possible to fix these warnings or do you inh
ivoc 2017/02/07 13:55:52 The warnings don't trigger on the code in this too
+ }
+ }
+ }
}
« webrtc/BUILD.gn ('K') | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698