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

Side by Side Diff: logging/BUILD.gn

Issue 2997973002: Split LogRtpHeader and LogRtcpPacket into separate versions for incoming and outgoing packets.
Patch Set: Split VerifyRtpEvent into one incoming and one outgoing version. Created 3 years, 2 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 unified diff | Download patch
« no previous file with comments | « call/call.cc ('k') | logging/rtc_event_log/mock/mock_rtc_event_log.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("../webrtc.gni") 9 import("../webrtc.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 13 matching lines...) Expand all
24 24
25 rtc_source_set("rtc_event_log_api") { 25 rtc_source_set("rtc_event_log_api") {
26 sources = [ 26 sources = [
27 "rtc_event_log/rtc_event_log.h", 27 "rtc_event_log/rtc_event_log.h",
28 "rtc_event_log/rtc_event_log_factory_interface.h", 28 "rtc_event_log/rtc_event_log_factory_interface.h",
29 "rtc_event_log/rtc_stream_config.cc", 29 "rtc_event_log/rtc_stream_config.cc",
30 "rtc_event_log/rtc_stream_config.h", 30 "rtc_event_log/rtc_stream_config.h",
31 ] 31 ]
32 deps = [ 32 deps = [
33 "..:webrtc_common", 33 "..:webrtc_common",
34 "../api:array_view",
34 "../api:libjingle_peerconnection_api", 35 "../api:libjingle_peerconnection_api",
35 "../call:video_stream_api", 36 "../call:video_stream_api",
36 "../rtc_base:rtc_base_approved", 37 "../rtc_base:rtc_base_approved",
37 ] 38 ]
38 } 39 }
39 40
40 rtc_static_library("rtc_event_log_impl") { 41 rtc_static_library("rtc_event_log_impl") {
41 sources = [ 42 sources = [
42 "rtc_event_log/rtc_event_log.cc", 43 "rtc_event_log/rtc_event_log.cc",
43 "rtc_event_log/rtc_event_log_factory.cc", 44 "rtc_event_log/rtc_event_log_factory.cc",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 ":rtc_event_log_proto", 189 ":rtc_event_log_proto",
189 "../rtc_base:rtc_base_approved", 190 "../rtc_base:rtc_base_approved",
190 ] 191 ]
191 if (!build_with_chromium && is_clang) { 192 if (!build_with_chromium && is_clang) {
192 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 193 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
193 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 194 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
194 } 195 }
195 } 196 }
196 } 197 }
197 } 198 }
OLDNEW
« no previous file with comments | « call/call.cc ('k') | logging/rtc_event_log/mock/mock_rtc_event_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698