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

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: No-op Created 4 years, 8 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 ], 134 ],
135 }], 135 }],
136 ], 136 ],
137 }, 137 },
138 { 138 {
139 'target_name': 'rtc_event_log', 139 'target_name': 'rtc_event_log',
140 'type': 'static_library', 140 'type': 'static_library',
141 'sources': [ 141 'sources': [
142 'call/rtc_event_log.cc', 142 'call/rtc_event_log.cc',
143 'call/rtc_event_log.h', 143 'call/rtc_event_log.h',
144 'call/rtc_event_log_helper_thread.cc',
145 'call/rtc_event_log_helper_thread.h',
144 ], 146 ],
145 'conditions': [ 147 'conditions': [
146 # If enable_protobuf is defined, we want to compile the protobuf 148 # If enable_protobuf is defined, we want to compile the protobuf
147 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. 149 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources.
148 ['enable_protobuf==1', { 150 ['enable_protobuf==1', {
149 'dependencies': [ 151 'dependencies': [
150 'rtc_event_log_proto', 152 'rtc_event_log_proto',
151 ], 153 ],
152 'defines': [ 154 'defines': [
153 'ENABLE_RTC_EVENT_LOG', 155 'ENABLE_RTC_EVENT_LOG',
154 ], 156 ],
155 }], 157 }],
156 ], 158 ],
157 }, 159 },
158 160
159 ], 161 ],
160 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698