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 'conditions': [ | 9 'conditions': [ |
10 ['include_tests==1', { | 10 ['include_tests==1', { |
(...skipping 11 matching lines...) Expand all Loading... | |
22 # This target should only be built if enable_protobuf is defined | 22 # This target should only be built if enable_protobuf is defined |
23 'target_name': 'rtc_event_log_proto', | 23 'target_name': 'rtc_event_log_proto', |
24 'type': 'static_library', | 24 'type': 'static_library', |
25 'sources': ['video/rtc_event_log.proto',], | 25 'sources': ['video/rtc_event_log.proto',], |
26 'variables': { | 26 'variables': { |
27 'proto_in_dir': 'video', | 27 'proto_in_dir': 'video', |
28 'proto_out_dir': 'webrtc/video', | 28 'proto_out_dir': 'webrtc/video', |
29 }, | 29 }, |
30 'includes': ['build/protoc.gypi'], | 30 'includes': ['build/protoc.gypi'], |
31 }, | 31 }, |
32 { | |
33 'target_name': 'rtc_event_log2rtp_dump', | |
hlundin-webrtc
2015/08/17 11:14:34
I'm not sure that webrtc.gyp is the right place fo
terelius
2015/08/17 11:39:06
Yes, there is a webrtc_video.gypi, but it just con
ivoc
2015/08/21 14:30:57
For now I think webrtc.gyp is the right place, sin
| |
34 'type': 'executable', | |
35 'sources': ['video/rtc_event_log2rtp_dump.cc',], | |
36 'dependencies': [ | |
37 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
38 'rtc_event_log', | |
39 'rtc_event_log_proto', | |
terelius
2015/08/17 08:19:48
Do we need to explicitly depend on both rtc_event_
ivoc
2015/08/21 14:30:57
I'm afraid it is needed here, because the log-pars
| |
40 'test/test.gyp:rtp_test_utils' | |
41 ], | |
42 } | |
32 ], | 43 ], |
33 }], | 44 }], |
34 ], | 45 ], |
35 'includes': [ | 46 'includes': [ |
36 'build/common.gypi', | 47 'build/common.gypi', |
37 'video/webrtc_video.gypi', | 48 'video/webrtc_video.gypi', |
38 ], | 49 ], |
39 'variables': { | 50 'variables': { |
40 'webrtc_all_dependencies': [ | 51 'webrtc_all_dependencies': [ |
41 'base/base.gyp:*', | 52 'base/base.gyp:*', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
124 ], | 135 ], |
125 'defines': [ | 136 'defines': [ |
126 'ENABLE_RTC_EVENT_LOG', | 137 'ENABLE_RTC_EVENT_LOG', |
127 ], | 138 ], |
128 }], | 139 }], |
129 ], | 140 ], |
130 }, | 141 }, |
131 | 142 |
132 ], | 143 ], |
133 } | 144 } |
OLD | NEW |