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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1687703002: Refactored CL for moving the output to a separate thread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Minor update Created 4 years, 9 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
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 'variables': { 9 'variables': {
10 'webrtc_all_dependencies': [ 10 'webrtc_all_dependencies': [
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 ], 142 ],
143 }], 143 }],
144 ], 144 ],
145 }, 145 },
146 { 146 {
147 'target_name': 'rtc_event_log', 147 'target_name': 'rtc_event_log',
148 'type': 'static_library', 148 'type': 'static_library',
149 'sources': [ 149 'sources': [
150 'call/rtc_event_log.cc', 150 'call/rtc_event_log.cc',
151 'call/rtc_event_log.h', 151 'call/rtc_event_log.h',
152 'call/rtc_event_log_helper_thread.cc',
153 'call/rtc_event_log_helper_thread.h',
152 ], 154 ],
153 'conditions': [ 155 'conditions': [
154 # If enable_protobuf is defined, we want to compile the protobuf 156 # If enable_protobuf is defined, we want to compile the protobuf
155 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. 157 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources.
156 ['enable_protobuf==1', { 158 ['enable_protobuf==1', {
157 'dependencies': [ 159 'dependencies': [
158 'rtc_event_log_proto', 160 'rtc_event_log_proto',
159 ], 161 ],
160 'defines': [ 162 'defines': [
161 'ENABLE_RTC_EVENT_LOG', 163 'ENABLE_RTC_EVENT_LOG',
162 ], 164 ],
163 }], 165 }],
164 ], 166 ],
165 }, 167 },
166 168
167 ], 169 ],
168 } 170 }
OLDNEW
« webrtc/call/rtc_event_log_helper_thread.cc ('K') | « webrtc/voice_engine/channel_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698