blob: 6f9dcaa2d8a1dee1a5b7b58202e51f7c55709da1 [file] [log] [blame]
Anders Carlsson5f2bb622018-05-14 09:48:06 +02001# Copyright (c) 2018 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
9import("../../../webrtc.gni")
10
11if (rtc_include_tests) {
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020012 rtc_source_set("video_codecs_api_unittests") {
Anders Carlsson5f2bb622018-05-14 09:48:06 +020013 testonly = true
14 sources = [
15 "builtin_video_encoder_factory_unittest.cc",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020016 "video_decoder_software_fallback_wrapper_unittest.cc",
17 "video_encoder_software_fallback_wrapper_unittest.cc",
Anders Carlsson5f2bb622018-05-14 09:48:06 +020018 ]
19
20 deps = [
21 "..:builtin_video_encoder_factory",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020022 "..:rtc_software_fallback_wrappers",
Anders Carlsson5f2bb622018-05-14 09:48:06 +020023 "..:video_codecs_api",
Erik Språngd3438aa2018-11-08 16:56:43 +010024 "../..:mock_video_encoder",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020025 "../../../modules/video_coding:video_codec_interface",
Sergio Garcia Murillo43800f92018-06-21 16:16:38 +020026 "../../../modules/video_coding:video_coding_utility",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020027 "../../../modules/video_coding:webrtc_vp8",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020028 "../../../rtc_base:checks",
29 "../../../rtc_base:rtc_base_tests_utils",
Anders Carlsson5f2bb622018-05-14 09:48:06 +020030 "../../../test:field_trial",
31 "../../../test:test_support",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020032 "../../video:video_bitrate_allocation",
33 "../../video:video_frame_i420",
Anders Carlsson5f2bb622018-05-14 09:48:06 +020034 "//testing/gtest",
35 ]
36 }
37}