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