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