2012-08-22 08:12:00 +00:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
'includes': [
|
|
|
|
|
'../build/common.gypi',
|
|
|
|
|
],
|
|
|
|
|
'targets': [
|
2012-08-27 14:57:19 +00:00
|
|
|
{
|
|
|
|
|
'target_name': 'video_quality_analysis',
|
2013-01-18 17:13:47 +00:00
|
|
|
'type': 'static_library',
|
2012-08-22 08:12:00 +00:00
|
|
|
'dependencies': [
|
2015-01-26 19:17:26 +00:00
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
2012-08-22 08:12:00 +00:00
|
|
|
],
|
2012-08-27 14:57:19 +00:00
|
|
|
'export_dependent_settings': [
|
2015-01-26 19:17:26 +00:00
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
2012-08-27 14:57:19 +00:00
|
|
|
],
|
2012-08-22 08:12:00 +00:00
|
|
|
'sources': [
|
|
|
|
|
'frame_analyzer/video_quality_analysis.h',
|
|
|
|
|
'frame_analyzer/video_quality_analysis.cc',
|
|
|
|
|
],
|
2012-08-27 14:57:19 +00:00
|
|
|
}, # video_quality_analysis
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'frame_analyzer',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
2013-05-17 11:52:08 +00:00
|
|
|
'<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
|
2012-08-27 14:57:19 +00:00
|
|
|
'video_quality_analysis',
|
|
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'frame_analyzer/frame_analyzer.cc',
|
|
|
|
|
],
|
|
|
|
|
}, # frame_analyzer
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'psnr_ssim_analyzer',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
2013-05-17 11:52:08 +00:00
|
|
|
'<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
|
2012-08-27 14:57:19 +00:00
|
|
|
'video_quality_analysis',
|
|
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'psnr_ssim_analyzer/psnr_ssim_analyzer.cc',
|
|
|
|
|
],
|
|
|
|
|
}, # psnr_ssim_analyzer
|
2012-08-22 08:12:00 +00:00
|
|
|
{
|
|
|
|
|
'target_name': 'rgba_to_i420_converter',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
2015-01-26 19:17:26 +00:00
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
2013-05-17 11:52:08 +00:00
|
|
|
'<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
|
2012-08-22 08:12:00 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'converter/converter.h',
|
|
|
|
|
'converter/converter.cc',
|
|
|
|
|
'converter/rgba_to_i420_converter.cc',
|
|
|
|
|
],
|
2012-08-27 14:57:19 +00:00
|
|
|
}, # rgba_to_i420_converter
|
2012-11-27 13:44:07 +00:00
|
|
|
{
|
2012-12-20 11:42:45 +00:00
|
|
|
'target_name': 'frame_editing_lib',
|
2013-01-18 17:13:47 +00:00
|
|
|
'type': 'static_library',
|
2012-11-27 13:44:07 +00:00
|
|
|
'dependencies': [
|
2012-11-30 02:28:27 +00:00
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
2012-11-27 13:44:07 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
2012-12-20 11:42:45 +00:00
|
|
|
'frame_editing/frame_editing_lib.cc',
|
|
|
|
|
'frame_editing/frame_editing_lib.h',
|
2012-11-27 13:44:07 +00:00
|
|
|
],
|
2013-02-04 10:07:17 +00:00
|
|
|
# Disable warnings to enable Win64 build, issue 1323.
|
|
|
|
|
'msvs_disabled_warnings': [
|
|
|
|
|
4267, # size_t to int truncation.
|
|
|
|
|
],
|
2012-12-20 11:42:45 +00:00
|
|
|
}, # frame_editing_lib
|
2012-11-27 13:44:07 +00:00
|
|
|
{
|
2012-12-20 11:42:45 +00:00
|
|
|
'target_name': 'frame_editor',
|
2012-11-27 13:44:07 +00:00
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
2013-05-17 11:52:08 +00:00
|
|
|
'<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
|
2012-12-20 11:42:45 +00:00
|
|
|
'frame_editing_lib',
|
2012-11-27 13:44:07 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
2012-12-20 11:42:45 +00:00
|
|
|
'frame_editing/frame_editing.cc',
|
2012-11-27 13:44:07 +00:00
|
|
|
],
|
2012-12-20 11:42:45 +00:00
|
|
|
}, # frame_editing
|
2013-05-17 11:52:08 +00:00
|
|
|
{
|
|
|
|
|
'target_name': 'force_mic_volume_max',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
2016-09-09 11:04:53 -07:00
|
|
|
'<(webrtc_root)/modules/modules.gyp:audio_device',
|
2015-01-14 09:30:52 +00:00
|
|
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
2013-05-17 11:52:08 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'force_mic_volume_max/force_mic_volume_max.cc',
|
|
|
|
|
],
|
|
|
|
|
}, # force_mic_volume_max
|
2012-08-22 08:12:00 +00:00
|
|
|
],
|
2012-11-27 13:44:07 +00:00
|
|
|
'conditions': [
|
2016-08-23 13:01:27 -07:00
|
|
|
['enable_protobuf==1', {
|
2016-07-13 06:44:41 -07:00
|
|
|
'targets': [
|
2016-08-23 18:15:25 -07:00
|
|
|
{
|
2016-09-07 11:15:37 -07:00
|
|
|
'target_name': 'chart_proto',
|
2016-08-23 18:15:25 -07:00
|
|
|
'type': 'static_library',
|
|
|
|
|
'sources': [
|
2016-09-07 11:15:37 -07:00
|
|
|
'event_log_visualizer/chart.proto',
|
2016-08-23 18:15:25 -07:00
|
|
|
],
|
|
|
|
|
'variables': {
|
|
|
|
|
'proto_in_dir': 'event_log_visualizer',
|
|
|
|
|
'proto_out_dir': 'webrtc/tools/event_log_visualizer',
|
|
|
|
|
},
|
|
|
|
|
'includes': ['../build/protoc.gypi'],
|
|
|
|
|
},
|
2016-07-13 06:44:41 -07:00
|
|
|
{
|
2016-08-23 13:01:27 -07:00
|
|
|
# RTC event log visualization library
|
|
|
|
|
'target_name': 'event_log_visualizer_utils',
|
|
|
|
|
'type': 'static_library',
|
2016-07-13 06:44:41 -07:00
|
|
|
'dependencies': [
|
2016-07-29 14:48:54 +02:00
|
|
|
'<(webrtc_root)/webrtc.gyp:rtc_event_log',
|
2016-07-13 06:44:41 -07:00
|
|
|
'<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
|
2016-07-29 14:48:54 +02:00
|
|
|
'<(webrtc_root)/modules/modules.gyp:congestion_controller',
|
2016-07-13 06:44:41 -07:00
|
|
|
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
|
|
|
|
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
|
2016-09-07 11:15:37 -07:00
|
|
|
':chart_proto',
|
2016-07-13 06:44:41 -07:00
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'event_log_visualizer/analyzer.cc',
|
|
|
|
|
'event_log_visualizer/analyzer.h',
|
2016-08-01 12:03:27 -07:00
|
|
|
'event_log_visualizer/plot_base.cc',
|
2016-07-13 06:44:41 -07:00
|
|
|
'event_log_visualizer/plot_base.h',
|
2016-08-23 18:15:25 -07:00
|
|
|
'event_log_visualizer/plot_protobuf.cc',
|
|
|
|
|
'event_log_visualizer/plot_protobuf.h',
|
2016-07-13 06:44:41 -07:00
|
|
|
'event_log_visualizer/plot_python.cc',
|
|
|
|
|
'event_log_visualizer/plot_python.h',
|
|
|
|
|
],
|
2016-08-23 18:15:25 -07:00
|
|
|
'export_dependent_settings': [
|
|
|
|
|
'<(webrtc_root)/webrtc.gyp:rtc_event_log_parser',
|
2016-09-07 11:15:37 -07:00
|
|
|
':chart_proto',
|
2016-08-23 18:15:25 -07:00
|
|
|
],
|
2016-08-23 13:01:27 -07:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}],
|
2012-11-27 13:44:07 +00:00
|
|
|
], # conditions
|
2013-01-18 17:13:47 +00:00
|
|
|
}
|