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