OLD | NEW |
---|---|
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 ":frame_editing_lib", | 272 ":frame_editing_lib", |
273 ":video_quality_analysis", | 273 ":video_quality_analysis", |
274 "../test:test_support_main", | 274 "../test:test_support_main", |
275 "//testing/gtest", | 275 "//testing/gtest", |
276 ] | 276 ] |
277 | 277 |
278 if (is_android) { | 278 if (is_android) { |
279 deps += [ "//testing/android/native_test:native_test_support" ] | 279 deps += [ "//testing/android/native_test:native_test_support" ] |
280 } | 280 } |
281 } | 281 } |
282 | |
283 if (rtc_enable_protobuf) { | |
284 group("rtp_analyzer") { | |
kjellander_webrtc
2016/06/15 14:46:53
Please remove this group target. You can add a dep
aleloi
2016/06/16 11:15:28
Done.
| |
285 deps = [ | |
286 ":rtp_analyzer-copy", | |
287 "../:rtc_event_log_proto", | |
kjellander_webrtc
2016/06/15 14:46:53
nit: ..:rtc_event_log_proto is sufficient.
aleloi
2016/06/16 11:15:28
Done.
| |
288 ] | |
289 } | |
290 | |
291 copy("rtp_analyzer-copy") { | |
kjellander_webrtc
2016/06/15 14:46:53
After addressing the above comments, rename this t
aleloi
2016/06/16 11:15:27
Done.
| |
292 sources = [ | |
293 "py_event_log_analyzer/misc.py", | |
294 "py_event_log_analyzer/pb_parse.py", | |
295 "py_event_log_analyzer/rtp_analyzer.py", | |
296 "py_event_log_analyzer/rtp_analyzer.sh", | |
297 ] | |
298 outputs = [ | |
299 "$root_build_dir/{{source_file_part}}", | |
300 ] | |
301 } | |
302 } | |
282 } | 303 } |
OLD | NEW |