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

Side by Side Diff: webrtc/logging/BUILD.gn

Issue 2446963003: Clean up logging in AudioSendStream::SetupSendCodec(). (Closed)
Patch Set: fix build breakage? Created 4 years, 1 month 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 | « webrtc/config.cc ('k') | webrtc/webrtc.gyp » ('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("../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 14 matching lines...) Expand all
25 "rtc_event_log/rtc_event_log.cc", 25 "rtc_event_log/rtc_event_log.cc",
26 "rtc_event_log/rtc_event_log_helper_thread.cc", 26 "rtc_event_log/rtc_event_log_helper_thread.cc",
27 "rtc_event_log/rtc_event_log_helper_thread.h", 27 "rtc_event_log/rtc_event_log_helper_thread.h",
28 ] 28 ]
29 29
30 defines = [] 30 defines = []
31 31
32 deps = [ 32 deps = [
33 ":rtc_event_log_api", 33 ":rtc_event_log_api",
34 "..:webrtc_common", 34 "..:webrtc_common",
35 "../api:call_api",
35 "../modules/rtp_rtcp", 36 "../modules/rtp_rtcp",
36 ] 37 ]
37 38
38 if (rtc_enable_protobuf) { 39 if (rtc_enable_protobuf) {
39 defines += [ "ENABLE_RTC_EVENT_LOG" ] 40 defines += [ "ENABLE_RTC_EVENT_LOG" ]
40 deps += [ ":rtc_event_log_proto" ] 41 deps += [ ":rtc_event_log_proto" ]
41 } 42 }
42 if (!build_with_chromium && is_clang) { 43 if (!build_with_chromium && is_clang) {
43 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 44 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
44 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 45 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 ":rtc_event_log_proto", 89 ":rtc_event_log_proto",
89 "..:webrtc_common", 90 "..:webrtc_common",
90 ] 91 ]
91 92
92 if (!build_with_chromium && is_clang) { 93 if (!build_with_chromium && is_clang) {
93 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 94 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
94 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 95 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
95 } 96 }
96 } 97 }
97 } 98 }
OLDNEW
« no previous file with comments | « webrtc/config.cc ('k') | webrtc/webrtc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698