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

Side by Side Diff: webrtc/tools/tools.gyp

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added protobuf dependency back. 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
« no previous file with comments | « webrtc/tools/py_event_log_analyzer/rtp_analyzer.sh ('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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 4267, # size_t to int truncation. 170 4267, # size_t to int truncation.
171 ], 171 ],
172 'conditions': [ 172 'conditions': [
173 ['OS=="android"', { 173 ['OS=="android"', {
174 'dependencies': [ 174 'dependencies': [
175 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e', 175 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e',
176 ], 176 ],
177 }], 177 }],
178 ], 178 ],
179 }, # tools_unittests 179 }, # tools_unittests
180 {
181 'target_name': 'rtp_analyzer',
182 'type': 'none',
183 'variables': {
184 'copy_output_dir%': '<(PRODUCT_DIR)',
185 },
186 'copies': [
187 {
188 'destination': '<(copy_output_dir)/',
189 'files': [
190 'py_event_log_analyzer/misc.py',
191 'py_event_log_analyzer/pb_parse.py',
192 'py_event_log_analyzer/rtp_analyzer.py',
193 'py_event_log_analyzer/rtp_analyzer.sh',
194 ]
195 },
196 ],
197 'dependencies': [ '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto' ],
198 'process_outputs_as_sources': 1,
199 }, # rtp_analyzer
180 ], # targets 200 ], # targets
181 'conditions': [ 201 'conditions': [
182 ['OS=="android"', { 202 ['OS=="android"', {
183 'targets': [ 203 'targets': [
184 { 204 {
185 'target_name': 'tools_unittests_apk_target', 205 'target_name': 'tools_unittests_apk_target',
186 'type': 'none', 206 'type': 'none',
187 'dependencies': [ 207 'dependencies': [
188 '<(android_tests_path):tools_unittests_apk', 208 '<(android_tests_path):tools_unittests_apk',
189 ], 209 ],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'sources': [ 245 'sources': [
226 'tools_unittests.isolate', 246 'tools_unittests.isolate',
227 ], 247 ],
228 }, 248 },
229 ], 249 ],
230 }], 250 }],
231 ], 251 ],
232 }], # include_tests 252 }], # include_tests
233 ], # conditions 253 ], # conditions
234 } 254 }
OLDNEW
« no previous file with comments | « webrtc/tools/py_event_log_analyzer/rtp_analyzer.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698