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

Side by Side Diff: webrtc/webrtc.gyp

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/logging/BUILD.gn ('k') | no next file » | 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) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'build/common.gypi', 10 'build/common.gypi',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'logging/rtc_event_log/rtc_event_log_helper_thread.cc', 60 'logging/rtc_event_log/rtc_event_log_helper_thread.cc',
61 'logging/rtc_event_log/rtc_event_log_helper_thread.h', 61 'logging/rtc_event_log/rtc_event_log_helper_thread.h',
62 ], 62 ],
63 'conditions': [ 63 'conditions': [
64 # If enable_protobuf is defined, we want to compile the protobuf 64 # If enable_protobuf is defined, we want to compile the protobuf
65 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. 65 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources.
66 ['enable_protobuf==1', { 66 ['enable_protobuf==1', {
67 'dependencies': [ 67 'dependencies': [
68 'rtc_event_log_api', 68 'rtc_event_log_api',
69 'rtc_event_log_proto', 69 'rtc_event_log_proto',
70 '<(webrtc_root)/api/api.gyp:call_api',
70 ], 71 ],
71 'defines': [ 72 'defines': [
72 'ENABLE_RTC_EVENT_LOG', 73 'ENABLE_RTC_EVENT_LOG',
73 ], 74 ],
74 }], 75 }],
75 ], 76 ],
76 }, 77 },
77 ], # targets 78 ], # targets
78 'conditions': [ 79 'conditions': [
79 ['include_tests==1', { 80 ['include_tests==1', {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 121 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
121 'rtc_event_log_parser', 122 'rtc_event_log_parser',
122 'rtc_event_log_proto', 123 'rtc_event_log_proto',
123 'test/test.gyp:rtp_test_utils' 124 'test/test.gyp:rtp_test_utils'
124 ], 125 ],
125 }, 126 },
126 ], 127 ],
127 }], 128 }],
128 ], # conditions 129 ], # conditions
129 } 130 }
OLDNEW
« no previous file with comments | « webrtc/logging/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698