Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1224)

Unified Diff: webrtc/webrtc.gyp

Issue 1768773002: New parser for event log. Manually parse the outermost EventStream (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/webrtc.gyp
diff --git a/webrtc/webrtc.gyp b/webrtc/webrtc.gyp
index 21387448effbd40e994c454a58c6ae46ffab7c31..793bf96335ef40f24c6c8fdef4852f912632ef52 100644
--- a/webrtc/webrtc.gyp
+++ b/webrtc/webrtc.gyp
@@ -67,6 +67,24 @@
},
],
}],
+ ['enable_protobuf==1', {
+ 'targets': [
+ {
+ 'target_name': 'rtc_event_log_parser',
+ 'type': 'static_library',
+ 'sources': [
+ 'call/rtc_event_log_parser.cc',
+ 'call/rtc_event_log_parser.h',
+ ],
+ 'dependencies': [
+ 'rtc_event_log_proto',
+ ],
+ 'export_dependent_settings': [
+ 'rtc_event_log_proto',
+ ],
+ },
+ ],
+ }],
['include_tests==1 and enable_protobuf==1', {
'targets': [
{
@@ -75,7 +93,7 @@
'sources': ['call/rtc_event_log2rtp_dump.cc',],
'dependencies': [
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- 'rtc_event_log',
+ 'rtc_event_log_parser',
'rtc_event_log_proto',
'test/test.gyp:rtp_test_utils'
],
« no previous file with comments | « webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698