kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 1 | # Copyright (c) 2014 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 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 9 | import("//testing/test.gni") |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 10 | import("//third_party/protobuf/proto_library.gni") |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 11 | import("../build/webrtc.gni") |
| 12 | |
| 13 | source_set("tools") { |
| 14 | deps = [ |
| 15 | ":command_line_parser", |
| 16 | ] |
kjellander | a811968 | 2016-06-06 02:00:18 -0700 | [diff] [blame] | 17 | |
| 18 | if (!build_with_chromium) { |
| 19 | # TODO(kjellander): Enable these when webrtc:5970 is fixed. |
| 20 | deps += [ |
| 21 | ":frame_analyzer", |
| 22 | ":rgba_to_i420_converter", |
| 23 | ] |
| 24 | } |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | source_set("command_line_parser") { |
| 28 | sources = [ |
Henrik Kjellander | fa16dda | 2015-04-01 22:53:56 +0200 | [diff] [blame] | 29 | "simple_command_line_parser.cc", |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 30 | "simple_command_line_parser.h", |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 31 | ] |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 32 | deps = [ |
kjellander | 988d31e | 2016-02-05 00:23:50 -0800 | [diff] [blame] | 33 | "../base:gtest_prod", |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 34 | ] |
kjellander@webrtc.org | 3037bc3 | 2014-09-30 19:07:58 +0000 | [diff] [blame] | 35 | configs += [ "..:common_config" ] |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 36 | public_configs = [ "..:common_inherited_config" ] |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 37 | } |
| 38 | |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 39 | source_set("video_quality_analysis") { |
| 40 | sources = [ |
| 41 | "frame_analyzer/video_quality_analysis.cc", |
| 42 | "frame_analyzer/video_quality_analysis.h", |
| 43 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 44 | |
| 45 | configs += [ "..:common_config" ] |
| 46 | public_configs = [ "..:common_inherited_config" ] |
| 47 | |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 48 | deps = [ |
| 49 | "../common_video", |
| 50 | ] |
| 51 | public_deps = [ |
| 52 | "../common_video", |
| 53 | ] |
| 54 | } |
| 55 | |
| 56 | executable("frame_analyzer") { |
| 57 | sources = [ |
| 58 | "frame_analyzer/frame_analyzer.cc", |
| 59 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 60 | |
| 61 | configs += [ "..:common_config" ] |
| 62 | public_configs = [ "..:common_inherited_config" ] |
| 63 | |
| 64 | deps = [ |
| 65 | ":command_line_parser", |
| 66 | ":video_quality_analysis", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 67 | "//build/config/sanitizers:deps", |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 68 | "//build/win:default_exe_manifest", |
| 69 | ] |
| 70 | } |
| 71 | |
| 72 | executable("psnr_ssim_analyzer") { |
| 73 | sources = [ |
| 74 | "psnr_ssim_analyzer/psnr_ssim_analyzer.cc", |
| 75 | ] |
| 76 | |
| 77 | configs += [ "..:common_config" ] |
| 78 | public_configs = [ "..:common_inherited_config" ] |
| 79 | |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 80 | deps = [ |
| 81 | ":command_line_parser", |
| 82 | ":video_quality_analysis", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 83 | "//build/config/sanitizers:deps", |
brucedawson | 84583e0 | 2016-04-28 00:21:08 -0700 | [diff] [blame] | 84 | "//build/win:default_exe_manifest", |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 85 | ] |
| 86 | } |
| 87 | |
| 88 | executable("rgba_to_i420_converter") { |
| 89 | sources = [ |
| 90 | "converter/converter.cc", |
| 91 | "converter/converter.h", |
| 92 | "converter/rgba_to_i420_converter.cc", |
| 93 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 94 | |
| 95 | configs += [ "..:common_config" ] |
| 96 | public_configs = [ "..:common_inherited_config" ] |
| 97 | |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 98 | deps = [ |
| 99 | ":command_line_parser", |
| 100 | "../common_video", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 101 | "//build/config/sanitizers:deps", |
brucedawson | 84583e0 | 2016-04-28 00:21:08 -0700 | [diff] [blame] | 102 | "//build/win:default_exe_manifest", |
Henrik Kjellander | 67bcb60 | 2015-10-07 08:42:52 +0200 | [diff] [blame] | 103 | ] |
| 104 | } |
| 105 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 106 | source_set("frame_editing_lib") { |
| 107 | sources = [ |
| 108 | "frame_editing/frame_editing_lib.cc", |
| 109 | "frame_editing/frame_editing_lib.h", |
| 110 | ] |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 111 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 112 | configs += [ "..:common_config" ] |
| 113 | public_configs = [ "..:common_inherited_config" ] |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 114 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 115 | # TODO(jschuh): Bug 1348: fix this warning. |
| 116 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 117 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 118 | if (is_clang) { |
| 119 | # Suppress warnings from the Chromium Clang plugin. |
| 120 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 121 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 122 | } |
kjellander@webrtc.org | 3037bc3 | 2014-09-30 19:07:58 +0000 | [diff] [blame] | 123 | |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 124 | deps = [ |
| 125 | "../common_video", |
| 126 | ] |
| 127 | } |
| 128 | |
| 129 | executable("frame_editor") { |
| 130 | sources = [ |
| 131 | "frame_editing/frame_editing.cc", |
| 132 | ] |
| 133 | |
| 134 | configs += [ "..:common_config" ] |
| 135 | public_configs = [ "..:common_inherited_config" ] |
| 136 | |
| 137 | deps = [ |
| 138 | ":command_line_parser", |
| 139 | ":frame_editing_lib", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 140 | "//build/config/sanitizers:deps", |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 141 | "//build/win:default_exe_manifest", |
| 142 | ] |
| 143 | } |
| 144 | |
| 145 | executable("force_mic_volume_max") { |
| 146 | sources = [ |
| 147 | "force_mic_volume_max/force_mic_volume_max.cc", |
| 148 | ] |
| 149 | |
| 150 | configs += [ "..:common_config" ] |
| 151 | public_configs = [ "..:common_inherited_config" ] |
| 152 | |
| 153 | if (is_clang) { |
| 154 | # Suppress warnings from the Chromium Clang plugin. |
| 155 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 156 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 157 | } |
| 158 | |
| 159 | deps = [ |
| 160 | "../system_wrappers:system_wrappers_default", |
| 161 | "../voice_engine", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 162 | "//build/config/sanitizers:deps", |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 163 | "//build/win:default_exe_manifest", |
| 164 | ] |
| 165 | } |
| 166 | |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 167 | if (rtc_enable_protobuf) { |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 168 | proto_library("graph_proto") { |
| 169 | sources = [ |
| 170 | "event_log_visualizer/graph.proto", |
| 171 | ] |
| 172 | proto_out_dir = "webrtc/tools/event_log_visualizer" |
| 173 | } |
| 174 | |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 175 | source_set("event_log_visualizer_utils") { |
| 176 | sources = [ |
| 177 | "event_log_visualizer/analyzer.cc", |
| 178 | "event_log_visualizer/analyzer.h", |
| 179 | "event_log_visualizer/plot_base.cc", |
| 180 | "event_log_visualizer/plot_base.h", |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 181 | "event_log_visualizer/plot_protobuf.cc", |
| 182 | "event_log_visualizer/plot_protobuf.h", |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 183 | "event_log_visualizer/plot_python.cc", |
| 184 | "event_log_visualizer/plot_python.h", |
| 185 | ] |
| 186 | configs += [ "..:common_config" ] |
| 187 | public_configs = [ "..:common_inherited_config" ] |
| 188 | if (is_clang && !is_nacl) { |
| 189 | # Suppress warnings from the Chromium Clang plugin. |
| 190 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 191 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 192 | } |
| 193 | defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 194 | deps = [ |
| 195 | "../:rtc_event_log", |
| 196 | "../:rtc_event_log_parser", |
| 197 | "../modules/congestion_controller:congestion_controller", |
| 198 | "../modules/rtp_rtcp:rtp_rtcp", |
| 199 | "../system_wrappers:system_wrappers_default", |
| 200 | "//build/config/sanitizers:deps", |
| 201 | ] |
| 202 | public_deps = [ |
terelius | b246a29 | 2016-08-23 18:15:25 -0700 | [diff] [blame] | 203 | ":graph_proto", |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 204 | "../:rtc_event_log_parser", |
| 205 | ] |
| 206 | } |
| 207 | } |
| 208 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 209 | # Exclude tools depending on gflags since that's not available in Chromium. |
kjellander@webrtc.org | aff499c | 2016-06-06 23:04:31 +0200 | [diff] [blame] | 210 | if (rtc_include_tests) { |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 211 | if (rtc_enable_protobuf) { |
| 212 | executable("event_log_visualizer") { |
Stefan Holmer | 1318103 | 2016-07-29 14:48:54 +0200 | [diff] [blame] | 213 | testonly = true |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 214 | sources = [ |
terelius | d49a37b | 2016-08-10 07:12:38 -0700 | [diff] [blame] | 215 | "event_log_visualizer/main.cc", |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 216 | ] |
| 217 | |
| 218 | configs += [ "..:common_config" ] |
| 219 | public_configs = [ "..:common_inherited_config" ] |
| 220 | |
| 221 | if (is_clang && !is_nacl) { |
| 222 | # Suppress warnings from the Chromium Clang plugin. |
| 223 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 224 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 225 | } |
| 226 | |
| 227 | defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 228 | deps = [ |
skvlad | 185ba29 | 2016-08-23 13:01:27 -0700 | [diff] [blame] | 229 | ":event_log_visualizer_utils", |
ehmaldonado | bcba64a | 2016-08-19 02:11:07 -0700 | [diff] [blame] | 230 | "//build/config/sanitizers:deps", |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 231 | "//third_party/gflags", |
| 232 | ] |
| 233 | } |
| 234 | } |
| 235 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 236 | executable("activity_metric") { |
| 237 | testonly = true |
| 238 | sources = [ |
| 239 | "agc/activity_metric.cc", |
| 240 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 241 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 242 | configs += [ "..:common_config" ] |
| 243 | public_configs = [ "..:common_inherited_config" ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 244 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 245 | if (is_clang) { |
| 246 | # Suppress warnings from the Chromium Clang plugin. |
| 247 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 248 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 249 | } |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 250 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 251 | deps = [ |
| 252 | "../modules/audio_processing", |
| 253 | "../system_wrappers:metrics_default", |
ehmaldonado | 19319a3 | 2016-08-25 02:44:01 -0700 | [diff] [blame] | 254 | "//build/config/sanitizers:deps", |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 255 | "//build/win:default_exe_manifest", |
| 256 | "//testing/gtest", |
| 257 | "//third_party/gflags", |
| 258 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 259 | } |
| 260 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 261 | executable("audio_e2e_harness") { |
| 262 | testonly = true |
| 263 | sources = [ |
| 264 | "e2e_quality/audio/audio_e2e_harness.cc", |
| 265 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 266 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 267 | configs += [ "..:common_config" ] |
| 268 | public_configs = [ "..:common_inherited_config" ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 269 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 270 | if (is_clang) { |
| 271 | # Suppress warnings from the Chromium Clang plugin. |
| 272 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 273 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 274 | } |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 275 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 276 | deps = [ |
| 277 | "../system_wrappers:system_wrappers_default", |
| 278 | "../test:channel_transport", |
| 279 | "../voice_engine", |
ehmaldonado | 19319a3 | 2016-08-25 02:44:01 -0700 | [diff] [blame] | 280 | "//build/config/sanitizers:deps", |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 281 | "//build/win:default_exe_manifest", |
| 282 | "//testing/gtest", |
| 283 | "//third_party/gflags", |
| 284 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 285 | } |
| 286 | |
kjellander | 32c4a20 | 2016-08-30 02:53:49 -0700 | [diff] [blame] | 287 | if (is_android || is_ios) { |
Henrik Kjellander | 7a122d6 | 2016-08-30 13:10:23 +0200 | [diff] [blame] | 288 | tools_unittests_resources = [ "//resources/foreman_cif.yuv" ] |
kjellander | 32c4a20 | 2016-08-30 02:53:49 -0700 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | if (is_ios) { |
| 292 | bundle_data("tools_unittests_bundle_data") { |
| 293 | testonly = true |
| 294 | sources = tools_unittests_resources |
| 295 | outputs = [ |
| 296 | "{{bundle_resources_dir}}/{{source_file_part}}", |
| 297 | ] |
| 298 | } |
| 299 | } |
| 300 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 301 | test("tools_unittests") { |
| 302 | testonly = true |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 303 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 304 | sources = [ |
| 305 | "frame_analyzer/video_quality_analysis_unittest.cc", |
| 306 | "frame_editing/frame_editing_unittest.cc", |
| 307 | "simple_command_line_parser_unittest.cc", |
| 308 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 309 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 310 | configs += [ "..:common_config" ] |
| 311 | public_configs = [ "..:common_inherited_config" ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 312 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 313 | # TODO(jschuh): Bug 1348: fix this warning. |
| 314 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 315 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 316 | if (is_clang) { |
| 317 | # Suppress warnings from the Chromium Clang plugin. |
| 318 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 319 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 320 | } |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 321 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 322 | deps = [ |
| 323 | ":command_line_parser", |
| 324 | ":frame_editing_lib", |
| 325 | ":video_quality_analysis", |
| 326 | "../test:test_support_main", |
| 327 | "//testing/gtest", |
| 328 | ] |
kjellander | bac0412 | 2016-06-02 02:18:48 -0700 | [diff] [blame] | 329 | |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 330 | if (is_android) { |
| 331 | deps += [ "//testing/android/native_test:native_test_support" ] |
kjellander | 32c4a20 | 2016-08-30 02:53:49 -0700 | [diff] [blame] | 332 | data = tools_unittests_resources |
kjellander | 28a0ffd | 2016-08-24 07:48:42 -0700 | [diff] [blame] | 333 | shard_timeout = 900 |
| 334 | } |
kjellander | 32c4a20 | 2016-08-30 02:53:49 -0700 | [diff] [blame] | 335 | if (is_ios) { |
| 336 | deps += [ ":tools_unittests_bundle_data" ] |
kjellander@webrtc.org | dc0dbad | 2016-06-02 13:29:07 +0200 | [diff] [blame] | 337 | } |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 338 | } |
aleloi | 7ebbf90 | 2016-06-20 07:39:15 -0700 | [diff] [blame] | 339 | |
| 340 | if (rtc_enable_protobuf) { |
| 341 | copy("rtp_analyzer") { |
| 342 | sources = [ |
| 343 | "py_event_log_analyzer/misc.py", |
| 344 | "py_event_log_analyzer/pb_parse.py", |
| 345 | "py_event_log_analyzer/rtp_analyzer.py", |
| 346 | "py_event_log_analyzer/rtp_analyzer.sh", |
| 347 | ] |
| 348 | outputs = [ |
| 349 | "$root_build_dir/{{source_file_part}}", |
| 350 | ] |
| 351 | deps = [ |
| 352 | "..:rtc_event_log_proto", |
| 353 | ] |
| 354 | } |
| 355 | } |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 356 | } |