Index: webrtc/webrtc.gyp |
diff --git a/webrtc/webrtc.gyp b/webrtc/webrtc.gyp |
index 49a66c34033fac0245c266f61c83485a593c4025..b9cadfd5095444b3fc07387c168e4336f6c9f38d 100644 |
--- a/webrtc/webrtc.gyp |
+++ b/webrtc/webrtc.gyp |
@@ -118,6 +118,8 @@ |
'conditions': [ |
# If enable_protobuf is defined, we want to compile the protobuf |
# and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. |
+ # We also want to compile the parsing functions (which do not make |
+ # sense without the protobuf). |
['enable_protobuf==1', { |
'dependencies': [ |
'rtc_event_log_proto', |
@@ -125,6 +127,10 @@ |
'defines': [ |
'ENABLE_RTC_EVENT_LOG', |
], |
+ 'sources': [ |
+ 'video/rtc_event_log_parser.cc', |
+ 'video/rtc_event_log_parser.h', |
+ ], |
}], |
], |
}, |