OLD | NEW |
---|---|
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
178 ['enable_protobuf==1', { | 178 ['enable_protobuf==1', { |
179 'dependencies': [ | 179 'dependencies': [ |
180 'rtc_event_log_proto', | 180 'rtc_event_log_proto', |
181 ], | 181 ], |
182 'defines': [ | 182 'defines': [ |
183 'ENABLE_RTC_EVENT_LOG', | 183 'ENABLE_RTC_EVENT_LOG', |
184 ], | 184 ], |
185 }], | 185 }], |
186 ], | 186 ], |
187 }, | 187 }, |
188 | 188 { |
189 'target_name': 'rtp_analyzer', | |
190 'type': 'none', | |
191 'actions': [ | |
192 { | |
193 'action_name': 'copy_py_scripts', | |
kjellander_webrtc
2016/06/13 12:33:31
Can you use https://gyp.gsrc.io/docs/LanguageSpeci
aleloi
2016/06/14 08:20:49
Done, it works as before now. I removed the copy s
| |
194 'variables': { | |
195 'copy_output_dir%': '<(PRODUCT_DIR)', | |
196 }, | |
197 'inputs': [ | |
198 '<(DEPTH)/tools/py_event_log_analyzer/pb_parse.py', | |
kjellander_webrtc
2016/06/13 12:33:31
sort alphabetically.
aleloi
2016/06/14 08:20:49
Done.
| |
199 '<(DEPTH)/tools/py_event_log_analyzer/misc.py', | |
200 '<(DEPTH)/tools/py_event_log_analyzer/rtp_analyzer.py', | |
201 '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py', | |
202 '<(DEPTH)/tools/py_event_log_analyzer/rtp_analyzer.sh', | |
203 ], | |
204 'outputs': [ | |
205 '<(copy_output_dir)/pb_parse.py', | |
206 '<(copy_output_dir)/misc.py', | |
207 '<(copy_output_dir)/rtp_analyzer.py', | |
208 '<(copy_output_dir)/copy_files.py', | |
209 '<(copy_output_dir)/rtp_analyzer.sh', | |
kjellander_webrtc
2016/06/13 12:33:31
sort alphabetically.
aleloi
2016/06/14 08:20:49
Done.
| |
210 ], | |
211 'action': ['python', | |
212 '<(DEPTH)/tools/py_event_log_analyzer/copy_files.py', | |
213 '--input_dir=<(DEPTH)/tools/py_event_log_analyzer/', | |
214 '--output_dir=<(copy_output_dir)'], | |
215 'message': 'Copying *py and *sh files to <(copy_output_dir)', | |
216 'process_outputs_as_sources': 1, | |
217 }, | |
218 ], | |
219 'dependencies': [ | |
220 'rtc_event_log_proto', | |
221 ], | |
222 }, | |
189 ], | 223 ], |
190 } | 224 } |
OLD | NEW |