vspasova@webrtc.org | f61dc9b | 2012-08-22 08:12:00 +0000 | [diff] [blame] | 1 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 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 |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
| 9 | { |
| 10 | 'includes': [ |
| 11 | '../build/common.gypi', |
| 12 | ], |
| 13 | 'targets': [ |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 14 | { |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 15 | 'target_name': 'video_quality_analysis', |
wjia@webrtc.org | 2e2a4cf | 2013-01-18 17:13:47 +0000 | [diff] [blame] | 16 | 'type': 'static_library', |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 17 | 'dependencies': [ |
kjellander@webrtc.org | d7e34e1 | 2015-01-26 19:17:26 +0000 | [diff] [blame] | 18 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 19 | ], |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 20 | 'export_dependent_settings': [ |
kjellander@webrtc.org | d7e34e1 | 2015-01-26 19:17:26 +0000 | [diff] [blame] | 21 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 22 | ], |
| 23 | 'sources': [ |
| 24 | 'frame_analyzer/video_quality_analysis.h', |
| 25 | 'frame_analyzer/video_quality_analysis.cc', |
| 26 | ], |
| 27 | }, # video_quality_analysis |
| 28 | { |
| 29 | 'target_name': 'frame_analyzer', |
| 30 | 'type': 'executable', |
| 31 | 'dependencies': [ |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 32 | '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 33 | 'video_quality_analysis', |
| 34 | ], |
| 35 | 'sources': [ |
| 36 | 'frame_analyzer/frame_analyzer.cc', |
| 37 | ], |
| 38 | }, # frame_analyzer |
| 39 | { |
| 40 | 'target_name': 'psnr_ssim_analyzer', |
| 41 | 'type': 'executable', |
| 42 | 'dependencies': [ |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 43 | '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 44 | 'video_quality_analysis', |
| 45 | ], |
| 46 | 'sources': [ |
| 47 | 'psnr_ssim_analyzer/psnr_ssim_analyzer.cc', |
| 48 | ], |
| 49 | }, # psnr_ssim_analyzer |
vspasova@webrtc.org | f61dc9b | 2012-08-22 08:12:00 +0000 | [diff] [blame] | 50 | { |
| 51 | 'target_name': 'rgba_to_i420_converter', |
| 52 | 'type': 'executable', |
| 53 | 'dependencies': [ |
kjellander@webrtc.org | d7e34e1 | 2015-01-26 19:17:26 +0000 | [diff] [blame] | 54 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 55 | '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
vspasova@webrtc.org | f61dc9b | 2012-08-22 08:12:00 +0000 | [diff] [blame] | 56 | ], |
| 57 | 'sources': [ |
| 58 | 'converter/converter.h', |
| 59 | 'converter/converter.cc', |
| 60 | 'converter/rgba_to_i420_converter.cc', |
vspasova@webrtc.org | f61dc9b | 2012-08-22 08:12:00 +0000 | [diff] [blame] | 61 | ], |
vspasova@webrtc.org | ac410e2 | 2012-08-27 14:57:19 +0000 | [diff] [blame] | 62 | }, # rgba_to_i420_converter |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 63 | { |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 64 | 'target_name': 'frame_editing_lib', |
wjia@webrtc.org | 2e2a4cf | 2013-01-18 17:13:47 +0000 | [diff] [blame] | 65 | 'type': 'static_library', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 66 | 'dependencies': [ |
andrew@webrtc.org | dddc02b | 2012-11-30 02:28:27 +0000 | [diff] [blame] | 67 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 68 | ], |
| 69 | 'sources': [ |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 70 | 'frame_editing/frame_editing_lib.cc', |
| 71 | 'frame_editing/frame_editing_lib.h', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 72 | ], |
kjellander@webrtc.org | fa53d87 | 2013-02-04 10:07:17 +0000 | [diff] [blame] | 73 | # Disable warnings to enable Win64 build, issue 1323. |
| 74 | 'msvs_disabled_warnings': [ |
| 75 | 4267, # size_t to int truncation. |
| 76 | ], |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 77 | }, # frame_editing_lib |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 78 | { |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 79 | 'target_name': 'frame_editor', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 80 | 'type': 'executable', |
| 81 | 'dependencies': [ |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 82 | '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 83 | 'frame_editing_lib', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 84 | ], |
| 85 | 'sources': [ |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 86 | 'frame_editing/frame_editing.cc', |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 87 | ], |
brykt@google.com | f556890 | 2012-12-20 11:42:45 +0000 | [diff] [blame] | 88 | }, # frame_editing |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 89 | { |
| 90 | 'target_name': 'force_mic_volume_max', |
| 91 | 'type': 'executable', |
| 92 | 'dependencies': [ |
solenberg | fc433e6 | 2016-09-09 11:04:53 -0700 | [diff] [blame] | 93 | '<(webrtc_root)/modules/modules.gyp:audio_device', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 94 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default', |
phoglund@webrtc.org | 14d7700 | 2013-05-17 11:52:08 +0000 | [diff] [blame] | 95 | ], |
| 96 | 'sources': [ |
| 97 | 'force_mic_volume_max/force_mic_volume_max.cc', |
| 98 | ], |
| 99 | }, # force_mic_volume_max |
vspasova@webrtc.org | f61dc9b | 2012-08-22 08:12:00 +0000 | [diff] [blame] | 100 | ], |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 101 | 'conditions': [ |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 102 | ['enable_protobuf==1', { |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 103 | 'targets': [ |
| 104 | { |
skvlad | f581eb7 | 2016-09-07 11:15:37 -0700 | [diff] [blame] | 105 | 'target_name': 'chart_proto', |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 106 | 'type': 'static_library', |
| 107 | 'sources': [ |
skvlad | f581eb7 | 2016-09-07 11:15:37 -0700 | [diff] [blame] | 108 | 'event_log_visualizer/chart.proto', |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 109 | ], |
| 110 | 'variables': { |
| 111 | 'proto_in_dir': 'event_log_visualizer', |
| 112 | 'proto_out_dir': 'webrtc/tools/event_log_visualizer', |
| 113 | }, |
| 114 | 'includes': ['../build/protoc.gypi'], |
| 115 | }, |
| 116 | { |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 117 | # RTC event log visualization library |
| 118 | 'target_name': 'event_log_visualizer_utils', |
| 119 | 'type': 'static_library', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 120 | 'dependencies': [ |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame^] | 121 | '<(webrtc_root)/webrtc.gyp:rtc_event_log_impl', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 122 | '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
Stefan Holmer | 1318103 | 2016-07-29 14:48:54 +0200 | [diff] [blame] | 123 | '<(webrtc_root)/modules/modules.gyp:congestion_controller', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 124 | '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
| 125 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default', |
skvlad | f581eb7 | 2016-09-07 11:15:37 -0700 | [diff] [blame] | 126 | ':chart_proto', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 127 | ], |
| 128 | 'sources': [ |
| 129 | 'event_log_visualizer/analyzer.cc', |
| 130 | 'event_log_visualizer/analyzer.h', |
terelius | dc35dcd | 2016-08-01 12:03:27 -0700 | [diff] [blame] | 131 | 'event_log_visualizer/plot_base.cc', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 132 | 'event_log_visualizer/plot_base.h', |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 133 | 'event_log_visualizer/plot_protobuf.cc', |
| 134 | 'event_log_visualizer/plot_protobuf.h', |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 135 | 'event_log_visualizer/plot_python.cc', |
| 136 | 'event_log_visualizer/plot_python.h', |
| 137 | ], |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 138 | 'export_dependent_settings': [ |
| 139 | '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
skvlad | f581eb7 | 2016-09-07 11:15:37 -0700 | [diff] [blame] | 140 | ':chart_proto', |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 141 | ], |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 142 | }, |
| 143 | ], |
| 144 | }], |
brykt@google.com | 4de3dfe | 2012-11-27 13:44:07 +0000 | [diff] [blame] | 145 | ], # conditions |
wjia@webrtc.org | 2e2a4cf | 2013-01-18 17:13:47 +0000 | [diff] [blame] | 146 | } |