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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added copying to BUILD.gn Created 4 years, 6 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
« tools/py_event_log_analyzer/rtp_analyzer.py ('K') | « webrtc/BUILD.gn ('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 'variables': { 9 'variables': {
10 'webrtc_all_dependencies': [ 10 'webrtc_all_dependencies': [
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 ['enable_protobuf==1', { 184 ['enable_protobuf==1', {
185 'dependencies': [ 185 'dependencies': [
186 'rtc_event_log_proto', 186 'rtc_event_log_proto',
187 ], 187 ],
188 'defines': [ 188 'defines': [
189 'ENABLE_RTC_EVENT_LOG', 189 'ENABLE_RTC_EVENT_LOG',
190 ], 190 ],
191 }], 191 }],
192 ], 192 ],
193 }, 193 },
194 194 {
195 'target_name': 'rtp_analyzer',
196 'type': 'none',
197 'actions': [
198 {
199 'action_name': 'copy_py_scripts',
200 'variables': {
201 'copy_output_dir%': '<(PRODUCT_DIR)',
202 },
203 'inputs': [
204 '<(DEPTH)/tools/py_event_log_analyzer/pb_parse.py',
205 '<(DEPTH)/tools/py_event_log_analyzer/misc.py',
206 '<(DEPTH)/tools/py_event_log_analyzer/rtp_analyzer.py',
207 '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py',
208 ],
209 'outputs': [
210 '<(copy_output_dir)',
211 ],
212 'action': ['python',
213 '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py',
214 '--input_dir=<(DEPTH)/tools/py_event_log_analyzer/',
215 '--output_dir=<(copy_output_dir)'],
216 'message': 'Copying *py files code to <(copy_output_dir)',
217 'process_outputs_as_sources': 1,
218 },
219 ],
220 'dependencies': [
221 'rtc_event_log_proto',
222 ],
223 },
195 ], 224 ],
196 } 225 }
OLDNEW
« tools/py_event_log_analyzer/rtp_analyzer.py ('K') | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698