2018-05-14 09:48:06 +02:00
|
|
|
# Copyright (c) 2018 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.
|
|
|
|
|
|
|
|
|
|
import("../../../webrtc.gni")
|
|
|
|
|
|
|
|
|
|
if (rtc_include_tests) {
|
2018-06-12 11:15:56 +02:00
|
|
|
rtc_source_set("video_codecs_api_unittests") {
|
2018-05-14 09:48:06 +02:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"builtin_video_encoder_factory_unittest.cc",
|
2018-06-12 11:15:56 +02:00
|
|
|
"video_decoder_software_fallback_wrapper_unittest.cc",
|
|
|
|
|
"video_encoder_software_fallback_wrapper_unittest.cc",
|
2018-05-14 09:48:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
"..:builtin_video_encoder_factory",
|
2018-06-12 11:15:56 +02:00
|
|
|
"..:rtc_software_fallback_wrappers",
|
2018-05-14 09:48:06 +02:00
|
|
|
"..:video_codecs_api",
|
2018-11-08 16:56:43 +01:00
|
|
|
"../..:mock_video_encoder",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../../:webrtc_common",
|
2019-01-25 20:26:48 +01:00
|
|
|
"../../../api:scoped_refptr",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../../modules:module_api",
|
2018-06-12 11:15:56 +02:00
|
|
|
"../../../modules/video_coding:video_codec_interface",
|
2018-06-21 16:16:38 +02:00
|
|
|
"../../../modules/video_coding:video_coding_utility",
|
2018-06-12 11:15:56 +02:00
|
|
|
"../../../modules/video_coding:webrtc_vp8",
|
|
|
|
|
"../../../rtc_base:checks",
|
|
|
|
|
"../../../rtc_base:rtc_base_tests_utils",
|
2018-05-14 09:48:06 +02:00
|
|
|
"../../../test:field_trial",
|
|
|
|
|
"../../../test:test_support",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../video:encoded_image",
|
2018-06-12 11:15:56 +02:00
|
|
|
"../../video:video_bitrate_allocation",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../video:video_frame",
|
2018-06-12 11:15:56 +02:00
|
|
|
"../../video:video_frame_i420",
|
2018-05-14 09:48:06 +02:00
|
|
|
"//testing/gtest",
|
2019-01-03 23:49:37 +01:00
|
|
|
"//third_party/abseil-cpp/absl/memory:memory",
|
2018-05-14 09:48:06 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|