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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1353083003: This relands the conversion tool from RtcEventLog files to RTPdump format. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated version - only webrtc.gyp is changed 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 13 matching lines...) Expand all
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 ], 32 ],
33 }], 33 }],
34 ['include_tests==1 and enable_protobuf==1', {
35 'targets': [
36 {
37 'target_name': 'rtc_event_log2rtp_dump',
38 'type': 'executable',
39 'sources': ['video/rtc_event_log2rtp_dump.cc',],
40 'dependencies': [
41 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
42 'rtc_event_log',
43 'rtc_event_log_proto',
44 'test/test.gyp:rtp_test_utils'
45 ],
46 },
47 ],
48 }],
34 ], 49 ],
35 'includes': [ 50 'includes': [
36 'build/common.gypi', 51 'build/common.gypi',
37 'video/webrtc_video.gypi', 52 'video/webrtc_video.gypi',
38 ], 53 ],
39 'variables': { 54 'variables': {
40 'webrtc_all_dependencies': [ 55 'webrtc_all_dependencies': [
41 'base/base.gyp:*', 56 'base/base.gyp:*',
42 'sound/sound.gyp:*', 57 'sound/sound.gyp:*',
43 'common.gyp:*', 58 'common.gyp:*',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 ], 139 ],
125 'defines': [ 140 'defines': [
126 'ENABLE_RTC_EVENT_LOG', 141 'ENABLE_RTC_EVENT_LOG',
127 ], 142 ],
128 }], 143 }],
129 ], 144 ],
130 }, 145 },
131 146
132 ], 147 ],
133 } 148 }
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