| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |