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

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: Comments from ivoc Created 4 years, 8 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'type': 'static_library', 48 'type': 'static_library',
49 'sources': ['call/rtc_event_log.proto',], 49 'sources': ['call/rtc_event_log.proto',],
50 'variables': { 50 'variables': {
51 'proto_in_dir': 'call', 51 'proto_in_dir': 'call',
52 'proto_out_dir': 'webrtc/call', 52 'proto_out_dir': 'webrtc/call',
53 }, 53 },
54 'includes': ['build/protoc.gypi'], 54 'includes': ['build/protoc.gypi'],
55 }, 55 },
56 ], 56 ],
57 }], 57 }],
58 ['enable_protobuf==1', {
59 'targets': [
60 {
61 'target_name': 'rtc_event_log_parser',
62 'type': 'static_library',
63 'sources': [
64 'call/rtc_event_log_parser.cc',
65 'call/rtc_event_log_parser.h',
66 ],
67 'dependencies': [
68 'rtc_event_log_proto',
69 ],
70 'export_dependent_settings': [
71 'rtc_event_log_proto',
72 ],
73 },
74 ],
75 }],
58 ['include_tests==1 and enable_protobuf==1', { 76 ['include_tests==1 and enable_protobuf==1', {
59 'targets': [ 77 'targets': [
60 { 78 {
61 'target_name': 'rtc_event_log2rtp_dump', 79 'target_name': 'rtc_event_log2rtp_dump',
62 'type': 'executable', 80 'type': 'executable',
63 'sources': ['call/rtc_event_log2rtp_dump.cc',], 81 'sources': ['call/rtc_event_log2rtp_dump.cc',],
64 'dependencies': [ 82 'dependencies': [
65 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 83 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
66 'rtc_event_log', 84 'rtc_event_log_parser',
67 'rtc_event_log_proto', 85 'rtc_event_log_proto',
68 'test/test.gyp:rtp_test_utils' 86 'test/test.gyp:rtp_test_utils'
69 ], 87 ],
70 }, 88 },
71 ], 89 ],
72 }], 90 }],
73 ], 91 ],
74 'includes': [ 92 'includes': [
75 'build/common.gypi', 93 'build/common.gypi',
76 'audio/webrtc_audio.gypi', 94 'audio/webrtc_audio.gypi',
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 ], 169 ],
152 'defines': [ 170 'defines': [
153 'ENABLE_RTC_EVENT_LOG', 171 'ENABLE_RTC_EVENT_LOG',
154 ], 172 ],
155 }], 173 }],
156 ], 174 ],
157 }, 175 },
158 176
159 ], 177 ],
160 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698