Chromium Code Reviews| 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
|
| + } |
| + } |
| + } |
| } |