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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'type': 'static_library', | 52 'type': 'static_library', |
53 'sources': ['call/rtc_event_log.proto',], | 53 'sources': ['call/rtc_event_log.proto',], |
54 'variables': { | 54 'variables': { |
55 'proto_in_dir': 'call', | 55 'proto_in_dir': 'call', |
56 'proto_out_dir': 'webrtc/call', | 56 'proto_out_dir': 'webrtc/call', |
57 }, | 57 }, |
58 'includes': ['build/protoc.gypi'], | 58 'includes': ['build/protoc.gypi'], |
59 }, | 59 }, |
60 ], | 60 ], |
61 }], | 61 }], |
| 62 ['enable_protobuf==1', { |
| 63 'targets': [ |
| 64 { |
| 65 'target_name': 'rtc_event_log_parser', |
| 66 'type': 'static_library', |
| 67 'sources': [ |
| 68 'call/rtc_event_log_parser.cc', |
| 69 'call/rtc_event_log_parser.h', |
| 70 ], |
| 71 'dependencies': [ |
| 72 'rtc_event_log_proto', |
| 73 ], |
| 74 'export_dependent_settings': [ |
| 75 'rtc_event_log_proto', |
| 76 ], |
| 77 }, |
| 78 ], |
| 79 }], |
62 ['include_tests==1 and enable_protobuf==1', { | 80 ['include_tests==1 and enable_protobuf==1', { |
63 'targets': [ | 81 'targets': [ |
64 { | 82 { |
65 'target_name': 'rtc_event_log2rtp_dump', | 83 'target_name': 'rtc_event_log2rtp_dump', |
66 'type': 'executable', | 84 'type': 'executable', |
67 'sources': ['call/rtc_event_log2rtp_dump.cc',], | 85 'sources': ['call/rtc_event_log2rtp_dump.cc',], |
68 'dependencies': [ | 86 'dependencies': [ |
69 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 87 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
70 'rtc_event_log', | 88 'rtc_event_log_parser', |
71 'rtc_event_log_proto', | 89 'rtc_event_log_proto', |
72 'test/test.gyp:rtp_test_utils' | 90 'test/test.gyp:rtp_test_utils' |
73 ], | 91 ], |
74 }, | 92 }, |
75 ], | 93 ], |
76 }], | 94 }], |
77 ], | 95 ], |
78 'includes': [ | 96 'includes': [ |
79 'build/common.gypi', | 97 'build/common.gypi', |
80 'audio/webrtc_audio.gypi', | 98 'audio/webrtc_audio.gypi', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 ], | 175 ], |
158 'defines': [ | 176 'defines': [ |
159 'ENABLE_RTC_EVENT_LOG', | 177 'ENABLE_RTC_EVENT_LOG', |
160 ], | 178 ], |
161 }], | 179 }], |
162 ], | 180 ], |
163 }, | 181 }, |
164 | 182 |
165 ], | 183 ], |
166 } | 184 } |
OLD | NEW |