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

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: Moved to webrtc/tools and updated build system 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
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'target_name': 'force_mic_volume_max', 90 'target_name': 'force_mic_volume_max',
91 'type': 'executable', 91 'type': 'executable',
92 'dependencies': [ 92 'dependencies': [
93 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 93 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
94 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult', 94 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult',
95 ], 95 ],
96 'sources': [ 96 'sources': [
97 'force_mic_volume_max/force_mic_volume_max.cc', 97 'force_mic_volume_max/force_mic_volume_max.cc',
98 ], 98 ],
99 }, # force_mic_volume_max 99 }, # force_mic_volume_max
100 {
101 'target_name': 'rtp_analyzer',
kjellander_webrtc 2016/06/15 14:46:54 Please move this inside the include_tests conditio
aleloi 2016/06/16 11:15:28 Done.
102 'type': 'none',
103 'variables': {
104 'copy_output_dir%': '<(PRODUCT_DIR)',
105 },
106 'copies': [
107 {
108 'destination': '<(copy_output_dir)/',
109 'files': [
110 'py_event_log_analyzer/misc.py',
111 'py_event_log_analyzer/pb_parse.py',
112 'py_event_log_analyzer/rtp_analyzer.py',
113 'py_event_log_analyzer/rtp_analyzer.sh',
114 ]
115 },
116 ],
117 'process_outputs_as_sources': 1,
118 'dependencies': [
119 '<(webrtc_root)/webrtc.gyp:rtc_event_log_proto',
kjellander_webrtc 2016/06/16 11:44:42 Didn't you want to keep this dependency? Since the
aleloi 2016/06/16 12:18:57 Yes, thank you! Fixed in next patch set.
120 ],
121 }, # rtp_analyzer
100 ], 122 ],
101 'conditions': [ 123 'conditions': [
102 ['include_tests==1', { 124 ['include_tests==1', {
103 'targets' : [ 125 'targets' : [
104 { 126 {
105 'target_name': 'agc_test_utils', 127 'target_name': 'agc_test_utils',
106 'type': 'static_library', 128 'type': 'static_library',
107 'sources': [ 129 'sources': [
108 'agc/test_utils.cc', 130 'agc/test_utils.cc',
109 'agc/test_utils.h', 131 'agc/test_utils.h',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'sources': [ 247 'sources': [
226 'tools_unittests.isolate', 248 'tools_unittests.isolate',
227 ], 249 ],
228 }, 250 },
229 ], 251 ],
230 }], 252 }],
231 ], 253 ],
232 }], # include_tests 254 }], # include_tests
233 ], # conditions 255 ], # conditions
234 } 256 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698