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

Side by Side 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 unified diff | Download patch
OLDNEW
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'type': 'static_library', 60 'type': 'static_library',
61 'sources': ['call/rtc_event_log.proto',], 61 'sources': ['call/rtc_event_log.proto',],
62 'variables': { 62 'variables': {
63 'proto_in_dir': 'call', 63 'proto_in_dir': 'call',
64 'proto_out_dir': 'webrtc/call', 64 'proto_out_dir': 'webrtc/call',
65 }, 65 },
66 'includes': ['build/protoc.gypi'], 66 'includes': ['build/protoc.gypi'],
67 }, 67 },
68 ], 68 ],
69 }], 69 }],
70 ['enable_protobuf==1', {
71 'targets': [
72 {
73 'target_name': 'rtc_event_log_parser',
74 'type': 'static_library',
75 'sources': [
76 'call/rtc_event_log_parser.cc',
77 'call/rtc_event_log_parser.h',
78 ],
79 'dependencies': [
80 'rtc_event_log_proto',
81 ],
82 'export_dependent_settings': [
83 'rtc_event_log_proto',
84 ],
85 },
86 ],
87 }],
70 ['include_tests==1 and enable_protobuf==1', { 88 ['include_tests==1 and enable_protobuf==1', {
71 'targets': [ 89 'targets': [
72 { 90 {
73 'target_name': 'rtc_event_log2rtp_dump', 91 'target_name': 'rtc_event_log2rtp_dump',
74 'type': 'executable', 92 'type': 'executable',
75 'sources': ['call/rtc_event_log2rtp_dump.cc',], 93 'sources': ['call/rtc_event_log2rtp_dump.cc',],
76 'dependencies': [ 94 'dependencies': [
77 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 95 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
78 'rtc_event_log', 96 'rtc_event_log_parser',
79 'rtc_event_log_proto', 97 'rtc_event_log_proto',
80 'test/test.gyp:rtp_test_utils' 98 'test/test.gyp:rtp_test_utils'
81 ], 99 ],
82 }, 100 },
83 ], 101 ],
84 }], 102 }],
85 ], 103 ],
86 'includes': [ 104 'includes': [
87 'build/common.gypi', 105 'build/common.gypi',
88 'audio/webrtc_audio.gypi', 106 'audio/webrtc_audio.gypi',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 ], 187 ],
170 'defines': [ 188 'defines': [
171 'ENABLE_RTC_EVENT_LOG', 189 'ENABLE_RTC_EVENT_LOG',
172 ], 190 ],
173 }], 191 }],
174 ], 192 ],
175 }, 193 },
176 194
177 ], 195 ],
178 } 196 }
OLDNEW
« 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