 Chromium Code Reviews
 Chromium Code Reviews Issue 2629353004:
  Added gn target for rtc_event_log2rtp_dump.  (Closed)
    
  
    Issue 2629353004:
  Added gn target for rtc_event_log2rtp_dump.  (Closed) 
  | OLD | NEW | 
|---|---|
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 
| 2 # | 2 # | 
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license | 
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source | 
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found | 
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may | 
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. | 
| 8 | 8 | 
| 9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") | 
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") | 
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 ":rtc_event_log_proto", | 99 ":rtc_event_log_proto", | 
| 100 "..:webrtc_common", | 100 "..:webrtc_common", | 
| 101 ] | 101 ] | 
| 102 | 102 | 
| 103 if (!build_with_chromium && is_clang) { | 103 if (!build_with_chromium && is_clang) { | 
| 104 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 104 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 105 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 105 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 106 } | 106 } | 
| 107 } | 107 } | 
| 108 } | 108 } | 
| 109 | |
| 110 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.
 | |
| 111 rtc_test("rtc_event_log2rtp_dump") { | |
| 112 testonly = true | |
| 113 sources = [ | |
| 114 "rtc_event_log/rtc_event_log2rtp_dump.cc", | |
| 115 ] | |
| 116 deps = [ | |
| 117 ":rtc_event_log_api", | |
| 118 ":rtc_event_log_impl", | |
| 119 ":rtc_event_log_parser", | |
| 120 "../base:rtc_base_approved", | |
| 121 "../call:call_interfaces", | |
| 122 "../modules/rtp_rtcp:rtp_rtcp", | |
| 123 "../test:rtp_test_utils", | |
| 124 "//third_party/gflags", | |
| 125 ] | |
| 126 if (!build_with_chromium && is_clang) { | |
| 127 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | |
| 128 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
| 129 } | |
| 130 } | |
| 131 } | |
| OLD | NEW |