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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1345983009: Revert of Tool to convert RtcEventLog files to RtpDump format. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « webrtc/video/rtc_event_log2rtp_dump.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'conditions': [ 9 'conditions': [
10 ['include_tests==1', { 10 ['include_tests==1', {
(...skipping 11 matching lines...) Expand all
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',
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',
40 'test/test.gyp:rtp_test_utils'
41 ],
42 }
43 ], 32 ],
44 }], 33 }],
45 ], 34 ],
46 'includes': [ 35 'includes': [
47 'build/common.gypi', 36 'build/common.gypi',
48 'video/webrtc_video.gypi', 37 'video/webrtc_video.gypi',
49 ], 38 ],
50 'variables': { 39 'variables': {
51 'webrtc_all_dependencies': [ 40 'webrtc_all_dependencies': [
52 'base/base.gyp:*', 41 'base/base.gyp:*',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ], 124 ],
136 'defines': [ 125 'defines': [
137 'ENABLE_RTC_EVENT_LOG', 126 'ENABLE_RTC_EVENT_LOG',
138 ], 127 ],
139 }], 128 }],
140 ], 129 ],
141 }, 130 },
142 131
143 ], 132 ],
144 } 133 }
OLDNEW
« no previous file with comments | « webrtc/video/rtc_event_log2rtp_dump.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698