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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 | 10 |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 "../../base:rtc_base_approved", | 274 "../../base:rtc_base_approved", |
275 "../../common_video", | 275 "../../common_video", |
276 "../../system_wrappers", | 276 "../../system_wrappers", |
277 ] | 277 ] |
278 if (rtc_build_libvpx) { | 278 if (rtc_build_libvpx) { |
279 deps += [ rtc_libvpx_dir ] | 279 deps += [ rtc_libvpx_dir ] |
280 } | 280 } |
281 } | 281 } |
282 | 282 |
283 if (rtc_include_tests) { | 283 if (rtc_include_tests) { |
| 284 rtc_executable("video_quality_measurement") { |
| 285 testonly = true |
| 286 |
| 287 sources = [ |
| 288 "codecs/tools/video_quality_measurement.cc", |
| 289 ] |
| 290 |
| 291 if (!build_with_chromium && is_clang) { |
| 292 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 293 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 294 } |
| 295 |
| 296 deps = [ |
| 297 ":video_codecs_test_framework", |
| 298 ":video_coding", |
| 299 ":webrtc_vp8", |
| 300 "../..:webrtc_common", |
| 301 "../../base:rtc_base_approved", |
| 302 "../../system_wrappers:field_trial_default", |
| 303 "../../system_wrappers:metrics_default", |
| 304 "../../system_wrappers:system_wrappers", |
| 305 "../../test:test_support", |
| 306 "//third_party/gflags", |
| 307 ] |
| 308 } # video_quality_measurement |
| 309 |
284 rtc_source_set("video_codecs_test_framework") { | 310 rtc_source_set("video_codecs_test_framework") { |
285 testonly = true | 311 testonly = true |
286 sources = [ | 312 sources = [ |
287 "codecs/test/mock/mock_packet_manipulator.h", | 313 "codecs/test/mock/mock_packet_manipulator.h", |
288 "codecs/test/packet_manipulator.cc", | 314 "codecs/test/packet_manipulator.cc", |
289 "codecs/test/packet_manipulator.h", | 315 "codecs/test/packet_manipulator.h", |
290 "codecs/test/predictive_packet_manipulator.cc", | 316 "codecs/test/predictive_packet_manipulator.cc", |
291 "codecs/test/predictive_packet_manipulator.h", | 317 "codecs/test/predictive_packet_manipulator.h", |
292 "codecs/test/stats.cc", | 318 "codecs/test/stats.cc", |
293 "codecs/test/stats.h", | 319 "codecs/test/stats.h", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 414 } |
389 | 415 |
390 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 416 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
391 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 417 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
392 if (!build_with_chromium && is_clang) { | 418 if (!build_with_chromium && is_clang) { |
393 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 419 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
394 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 420 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
395 } | 421 } |
396 } | 422 } |
397 } | 423 } |
OLD | NEW |