Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2695653002: Add support for creating HW codecs in VideoProcessor tests. (Closed)
Patch Set: kjellander comments 1. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/video_coding/DEPS » ('j') | webrtc/modules/video_coding/DEPS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 ":video_coding_utility", 334 ":video_coding_utility",
335 "../..:webrtc_common", 335 "../..:webrtc_common",
336 "../../base:rtc_base_approved", 336 "../../base:rtc_base_approved",
337 "../../common_video:common_video", 337 "../../common_video:common_video",
338 "../../system_wrappers:system_wrappers", 338 "../../system_wrappers:system_wrappers",
339 "../../test:test_support", 339 "../../test:test_support",
340 "../../test:video_test_support", 340 "../../test:video_test_support",
341 ] 341 ]
342 } 342 }
343 343
344 rtc_source_set("video_coding_modules_tests") { 344 rtc_source_set("video_coding_videoprocessor_integration_test") {
345 testonly = true 345 testonly = true
346
346 sources = [ 347 sources = [
347 "codecs/test/videoprocessor_integrationtest.cc",
348 "codecs/test/videoprocessor_integrationtest.h", 348 "codecs/test/videoprocessor_integrationtest.h",
349 "codecs/vp8/test/vp8_impl_unittest.cc",
350 ] 349 ]
350
351 deps = [ 351 deps = [
352 ":video_codecs_test_framework", 352 ":video_codecs_test_framework",
353 ":video_coding", 353 ":video_coding",
354 ":webrtc_h264", 354 ":webrtc_h264",
355 ":webrtc_vp8", 355 ":webrtc_vp8",
356 ":webrtc_vp9", 356 ":webrtc_vp9",
357 "../..:webrtc_common", 357 "../..:webrtc_common",
358 "../../media:rtc_media",
359 "../../test:test_support",
360 "../../test:video_test_support",
361 ]
362
363 if (is_android) {
364 sources += [
365 "codecs/test/android_test_initializer.cc",
366 "codecs/test/android_test_initializer.h",
367 ]
368
369 deps += [
370 "../../base:rtc_base_approved",
371 "../../sdk/android:libjingle_peerconnection_jni",
372 "//base",
373 ]
374 }
375
376 if (is_ios) {
377 deps += [
378 "../../media:rtc_media_base",
379 "../../sdk:webrtc_h264_video_toolbox",
380 ]
381 }
382 }
383
384 rtc_source_set("video_coding_modules_tests") {
385 testonly = true
386
387 sources = [
388 "codecs/test/videoprocessor_integrationtest.cc",
389 "codecs/vp8/test/vp8_impl_unittest.cc",
390 ]
391
392 deps = [
393 ":video_coding_videoprocessor_integration_test",
394 ":webrtc_vp8",
358 "../../api:video_frame_api", 395 "../../api:video_frame_api",
359 "../../base:rtc_base_approved", 396 "../../base:rtc_base_approved",
360 "../../common_video:common_video", 397 "../../common_video:common_video",
361 "../../media:rtc_media_base",
362 "../../test:test_support", 398 "../../test:test_support",
363 "../../test:video_test_common", 399 "../../test:video_test_common",
364 "../../test:video_test_support",
365 "../video_capture", 400 "../video_capture",
366 ] 401 ]
402
367 if (rtc_use_h264) { 403 if (rtc_use_h264) {
368 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] 404 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ]
369 } 405 }
406
370 if (!build_with_chromium && is_clang) { 407 if (!build_with_chromium && is_clang) {
371 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 408 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
372 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 409 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
410 }
411 }
412
413 plot_videoprocessor_integrationtest_resources = [
414 "//resources/foreman_sqcif.yuv",
415 "//resources/foreman_qqvga.yuv",
416 "//resources/foreman_qcif.yuv",
417 "//resources/foreman_qvga.yuv",
418 "//resources/foreman_cif.yuv",
419 ]
420
421 if (is_ios) {
422 bundle_data("plot_videoprocessor_integrationtest_bundle_data") {
423 testonly = true
424 sources = plot_videoprocessor_integrationtest_resources
425 outputs = [
426 "{{bundle_resources_dir}}/{{source_file_part}}",
427 ]
428 }
429 }
430
431 # This executable is meant for local codec perf testing and should not be run
432 # on the trybots/buildbots, hence the existence of this special build target.
433 rtc_test("plot_videoprocessor_integrationtest") {
434 testonly = true
435
436 sources = [
437 "codecs/test/plot_videoprocessor_integrationtest.cc",
438 ]
439
440 deps = [
441 ":video_coding_videoprocessor_integration_test",
442 "../../test:test_main",
443 "../../test:video_test_common",
444 "../video_capture",
445 ]
446
447 data = plot_videoprocessor_integrationtest_resources
448
449 if (is_android) {
450 deps += [
451 "../../base:rtc_base_approved",
452
453 # TODO(brandtr): Figure out if the java dep below could be moved into
454 # :video_coding_videoprocessor_integration_test, where it belongs.
455 "../../sdk/android:libjingle_peerconnection_java",
456 "../../sdk/android:libjingle_peerconnection_jni",
457 "//base",
458 "//testing/android/native_test:native_test_support",
459 ]
460
461 shard_timeout = 900
462 }
463
464 if (is_ios) {
465 deps += [ ":plot_videoprocessor_integrationtest_bundle_data" ]
466 }
467
468 if (!build_with_chromium && is_clang) {
469 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
470 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
373 } 471 }
374 } 472 }
375 473
376 rtc_source_set("video_coding_unittests") { 474 rtc_source_set("video_coding_unittests") {
377 testonly = true 475 testonly = true
378 sources = [ 476 sources = [
379 "codecs/test/packet_manipulator_unittest.cc", 477 "codecs/test/packet_manipulator_unittest.cc",
380 "codecs/test/stats_unittest.cc", 478 "codecs/test/stats_unittest.cc",
381 "codecs/test/videoprocessor_unittest.cc", 479 "codecs/test/videoprocessor_unittest.cc",
382 "codecs/vp8/default_temporal_layers_unittest.cc", 480 "codecs/vp8/default_temporal_layers_unittest.cc",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 } 551 }
454 552
455 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. 553 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning.
456 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 554 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
457 if (!build_with_chromium && is_clang) { 555 if (!build_with_chromium && is_clang) {
458 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 556 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
459 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 557 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
460 } 558 }
461 } 559 }
462 } 560 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/video_coding/DEPS » ('j') | webrtc/modules/video_coding/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698