2014-09-30 18:05:02 +00:00
|
|
|
# Copyright (c) 2014 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.
|
|
|
|
|
|
2017-01-24 05:14:35 -08:00
|
|
|
import("../build/webrtc.gni")
|
2016-06-01 04:48:26 -07:00
|
|
|
import("//build/config/ui.gni")
|
|
|
|
|
if (is_android) {
|
|
|
|
|
import("//build/config/android/rules.gni")
|
|
|
|
|
}
|
2016-11-23 12:58:35 -08:00
|
|
|
if (rtc_use_memcheck) {
|
2016-12-17 12:21:39 -08:00
|
|
|
import("//tools-webrtc/valgrind/valgrind-webrtc.gni")
|
2016-11-23 12:58:35 -08:00
|
|
|
}
|
2014-09-30 18:05:02 +00:00
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
group("test") {
|
2014-09-30 18:05:02 +00:00
|
|
|
testonly = true
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
":field_trial",
|
2016-06-01 04:48:26 -07:00
|
|
|
":rtp_test_utils",
|
|
|
|
|
":test_common",
|
2016-11-30 06:12:01 -08:00
|
|
|
":test_main",
|
2016-06-01 04:48:26 -07:00
|
|
|
":test_renderer",
|
2014-09-30 18:05:02 +00:00
|
|
|
":test_support",
|
2016-06-01 04:48:26 -07:00
|
|
|
":test_support_unittests",
|
|
|
|
|
":video_test_common",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("video_test_common") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"fake_texture_frame.cc",
|
|
|
|
|
"fake_texture_frame.h",
|
|
|
|
|
"frame_generator.cc",
|
|
|
|
|
"frame_generator.h",
|
|
|
|
|
"frame_utils.cc",
|
|
|
|
|
"frame_utils.h",
|
|
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
"../common_video",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("rtp_test_utils") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"rtcp_packet_parser.cc",
|
|
|
|
|
"rtcp_packet_parser.h",
|
|
|
|
|
"rtp_file_reader.cc",
|
|
|
|
|
"rtp_file_reader.h",
|
|
|
|
|
"rtp_file_writer.cc",
|
|
|
|
|
"rtp_file_writer.h",
|
|
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
"..:webrtc_common",
|
|
|
|
|
"../modules/rtp_rtcp",
|
|
|
|
|
"//testing/gtest",
|
2014-09-30 18:05:02 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("field_trial") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
2014-09-30 18:05:02 +00:00
|
|
|
sources = [
|
|
|
|
|
"field_trial.cc",
|
|
|
|
|
"field_trial.h",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
2015-02-26 13:59:22 +00:00
|
|
|
"..:webrtc_common",
|
2014-09-30 18:05:02 +00:00
|
|
|
"../system_wrappers",
|
2016-01-08 05:04:57 -08:00
|
|
|
"../system_wrappers:field_trial_default",
|
2014-09-30 18:05:02 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("test_main") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"test_main.cc",
|
|
|
|
|
]
|
|
|
|
|
|
2016-12-07 08:23:27 -08:00
|
|
|
public_deps = [
|
|
|
|
|
":test_support",
|
|
|
|
|
]
|
2016-06-01 04:48:26 -07:00
|
|
|
deps = [
|
|
|
|
|
":field_trial",
|
|
|
|
|
"../system_wrappers:metrics_default",
|
2016-11-30 06:12:01 -08:00
|
|
|
"//testing/gmock",
|
2016-06-01 04:48:26 -07:00
|
|
|
"//testing/gtest",
|
|
|
|
|
"//third_party/gflags",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-05 06:42:45 -08:00
|
|
|
rtc_source_set("fileutils") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"testsupport/fileutils.cc",
|
|
|
|
|
"testsupport/fileutils.h",
|
|
|
|
|
]
|
|
|
|
|
if (is_ios) {
|
|
|
|
|
sources += [ "testsupport/iosfileutils.mm" ]
|
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("test_support") {
|
2014-09-30 18:05:02 +00:00
|
|
|
testonly = true
|
|
|
|
|
|
|
|
|
|
sources = [
|
2016-09-28 17:42:01 -07:00
|
|
|
"gmock.h",
|
|
|
|
|
"gtest.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
"testsupport/frame_reader.cc",
|
|
|
|
|
"testsupport/frame_reader.h",
|
|
|
|
|
"testsupport/frame_writer.cc",
|
|
|
|
|
"testsupport/frame_writer.h",
|
2016-12-14 15:03:03 -08:00
|
|
|
"testsupport/isolated_output.cc",
|
|
|
|
|
"testsupport/isolated_output.h",
|
2016-06-14 12:52:54 +02:00
|
|
|
"testsupport/metrics/video_metrics.cc",
|
|
|
|
|
"testsupport/metrics/video_metrics.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
"testsupport/mock/mock_frame_reader.h",
|
|
|
|
|
"testsupport/mock/mock_frame_writer.h",
|
|
|
|
|
"testsupport/packet_reader.cc",
|
|
|
|
|
"testsupport/packet_reader.h",
|
|
|
|
|
"testsupport/perf_test.cc",
|
|
|
|
|
"testsupport/perf_test.h",
|
|
|
|
|
"testsupport/trace_to_stderr.cc",
|
|
|
|
|
"testsupport/trace_to_stderr.h",
|
2017-01-19 08:27:11 -08:00
|
|
|
"testsupport/unittest_utils.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
2016-09-30 04:14:07 -07:00
|
|
|
":video_test_common",
|
2016-02-05 00:23:50 -08:00
|
|
|
"../base:gtest_prod",
|
2016-09-28 17:42:01 -07:00
|
|
|
"../base:rtc_base_approved",
|
2016-06-14 12:52:54 +02:00
|
|
|
"../common_video",
|
2014-09-30 18:05:02 +00:00
|
|
|
"../system_wrappers",
|
2015-11-23 15:12:06 +01:00
|
|
|
"//testing/gmock",
|
|
|
|
|
"//testing/gtest",
|
2016-12-14 15:03:03 -08:00
|
|
|
"//third_party/gflags",
|
2014-09-30 18:05:02 +00:00
|
|
|
]
|
|
|
|
|
|
2016-12-05 06:42:45 -08:00
|
|
|
public_deps = [
|
|
|
|
|
":fileutils",
|
|
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-14 12:52:54 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-30 18:05:02 +00:00
|
|
|
if (is_android) {
|
|
|
|
|
deps += [ "//base:base" ]
|
|
|
|
|
}
|
2016-11-23 12:58:35 -08:00
|
|
|
|
2017-01-09 01:40:03 -08:00
|
|
|
if (is_ios) {
|
|
|
|
|
deps += [ "//webrtc/sdk:rtc_sdk_common_objc" ]
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 12:58:35 -08:00
|
|
|
if (rtc_use_memcheck) {
|
|
|
|
|
data = valgrind_webrtc_dependencies
|
|
|
|
|
}
|
2014-09-30 18:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-24 01:52:39 -07:00
|
|
|
rtc_source_set("run_test") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"run_test.h",
|
|
|
|
|
]
|
|
|
|
|
if (is_mac) {
|
|
|
|
|
sources += [ "mac/run_test.mm" ]
|
|
|
|
|
} else {
|
|
|
|
|
sources += [ "run_test.cc" ]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:10:01 -07:00
|
|
|
test_support_unittests_resources = [
|
|
|
|
|
"//resources/foreman_cif_short.yuv",
|
|
|
|
|
"//resources/video_coding/frame-ethernet-ii.pcap",
|
|
|
|
|
"//resources/video_coding/frame-loopback.pcap",
|
|
|
|
|
"//resources/video_coding/pltype103.rtp",
|
|
|
|
|
"//resources/video_coding/pltype103_header_only.rtp",
|
|
|
|
|
"//resources/video_coding/ssrcs-2.pcap",
|
|
|
|
|
"//resources/video_coding/ssrcs-3.pcap",
|
|
|
|
|
]
|
2016-08-30 02:53:49 -07:00
|
|
|
|
|
|
|
|
if (is_ios) {
|
|
|
|
|
bundle_data("test_support_unittests_bundle_data") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = test_support_unittests_resources
|
|
|
|
|
outputs = [
|
|
|
|
|
"{{bundle_resources_dir}}/{{source_file_part}}",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_test("test_support_unittests") {
|
2016-06-01 04:48:26 -07:00
|
|
|
deps = []
|
|
|
|
|
sources = [
|
|
|
|
|
"fake_network_pipe_unittest.cc",
|
|
|
|
|
"frame_generator_unittest.cc",
|
|
|
|
|
"rtp_file_reader_unittest.cc",
|
|
|
|
|
"rtp_file_writer_unittest.cc",
|
|
|
|
|
"testsupport/always_passing_unittest.cc",
|
|
|
|
|
"testsupport/frame_reader_unittest.cc",
|
|
|
|
|
"testsupport/frame_writer_unittest.cc",
|
2016-12-14 15:03:03 -08:00
|
|
|
"testsupport/isolated_output_unittest.cc",
|
2016-06-14 12:52:54 +02:00
|
|
|
"testsupport/metrics/video_metrics_unittest.cc",
|
2016-06-01 04:48:26 -07:00
|
|
|
"testsupport/packet_reader_unittest.cc",
|
|
|
|
|
"testsupport/perf_test_unittest.cc",
|
|
|
|
|
]
|
|
|
|
|
|
2016-06-02 02:09:52 -07:00
|
|
|
# TODO(jschuh): Bug 1348: fix this warning.
|
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|
|
|
|
2016-06-01 04:48:26 -07:00
|
|
|
if (is_win) {
|
2016-06-02 02:09:52 -07:00
|
|
|
cflags = [ "/wd4373" ] # virtual override w/different const/volatile signature.
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:10:01 -07:00
|
|
|
data = test_support_unittests_resources
|
2016-06-01 04:48:26 -07:00
|
|
|
if (is_android) {
|
|
|
|
|
deps += [ "//testing/android/native_test:native_test_support" ]
|
2016-08-24 07:48:42 -07:00
|
|
|
shard_timeout = 900
|
|
|
|
|
}
|
2016-06-01 04:48:26 -07:00
|
|
|
|
2016-08-30 02:53:49 -07:00
|
|
|
if (is_ios) {
|
|
|
|
|
deps += [ ":test_support_unittests_bundle_data" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
2016-08-24 07:48:42 -07:00
|
|
|
|
2016-06-01 04:48:26 -07:00
|
|
|
deps += [
|
2016-12-05 06:42:45 -08:00
|
|
|
":fileutils_unittests",
|
2016-06-01 04:48:26 -07:00
|
|
|
":test_common",
|
2016-11-30 06:12:01 -08:00
|
|
|
":test_main",
|
2016-06-01 04:48:26 -07:00
|
|
|
"../modules/video_capture",
|
|
|
|
|
"//testing/gmock",
|
|
|
|
|
"//testing/gtest",
|
2016-12-14 15:03:03 -08:00
|
|
|
"//third_party/gflags",
|
2016-06-01 04:48:26 -07:00
|
|
|
]
|
|
|
|
|
}
|
2016-12-05 06:42:45 -08:00
|
|
|
rtc_source_set("fileutils_unittests") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"testsupport/fileutils_unittest.cc",
|
|
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
":fileutils",
|
|
|
|
|
"//testing/gmock",
|
|
|
|
|
"//testing/gtest",
|
|
|
|
|
]
|
|
|
|
|
}
|
2016-06-01 04:48:26 -07:00
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("test_common") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"call_test.cc",
|
|
|
|
|
"call_test.h",
|
|
|
|
|
"configurable_frame_size_encoder.cc",
|
|
|
|
|
"configurable_frame_size_encoder.h",
|
|
|
|
|
"constants.cc",
|
|
|
|
|
"constants.h",
|
|
|
|
|
"direct_transport.cc",
|
|
|
|
|
"direct_transport.h",
|
|
|
|
|
"drifting_clock.cc",
|
|
|
|
|
"drifting_clock.h",
|
|
|
|
|
"encoder_settings.cc",
|
|
|
|
|
"encoder_settings.h",
|
|
|
|
|
"fake_audio_device.cc",
|
|
|
|
|
"fake_audio_device.h",
|
|
|
|
|
"fake_decoder.cc",
|
|
|
|
|
"fake_decoder.h",
|
|
|
|
|
"fake_encoder.cc",
|
|
|
|
|
"fake_encoder.h",
|
|
|
|
|
"fake_network_pipe.cc",
|
|
|
|
|
"fake_network_pipe.h",
|
2016-09-30 06:19:08 -07:00
|
|
|
"fake_videorenderer.h",
|
2016-06-01 04:48:26 -07:00
|
|
|
"frame_generator_capturer.cc",
|
|
|
|
|
"frame_generator_capturer.h",
|
|
|
|
|
"layer_filtering_transport.cc",
|
|
|
|
|
"layer_filtering_transport.h",
|
|
|
|
|
"mock_transport.h",
|
|
|
|
|
"mock_voe_channel_proxy.h",
|
|
|
|
|
"mock_voice_engine.h",
|
|
|
|
|
"null_transport.cc",
|
|
|
|
|
"null_transport.h",
|
|
|
|
|
"rtp_rtcp_observer.h",
|
|
|
|
|
"statistics.cc",
|
|
|
|
|
"statistics.h",
|
|
|
|
|
"vcm_capturer.cc",
|
|
|
|
|
"vcm_capturer.h",
|
|
|
|
|
"video_capturer.h",
|
|
|
|
|
"win/run_loop_win.cc",
|
|
|
|
|
]
|
|
|
|
|
if (!is_win) {
|
|
|
|
|
sources += [
|
|
|
|
|
"run_loop.cc",
|
|
|
|
|
"run_loop.h",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
":rtp_test_utils",
|
|
|
|
|
":test_support",
|
|
|
|
|
"..:webrtc_common",
|
2016-11-28 07:02:13 -08:00
|
|
|
"../api:transport_api",
|
2016-06-10 01:56:57 -07:00
|
|
|
"../audio",
|
2016-06-01 04:48:26 -07:00
|
|
|
"../base:rtc_base_approved",
|
2016-06-10 01:56:57 -07:00
|
|
|
"../call",
|
2016-11-17 06:28:59 -08:00
|
|
|
"../modules/audio_device:mock_audio_device",
|
2016-11-17 06:48:48 -08:00
|
|
|
"../modules/audio_mixer:audio_mixer_impl",
|
2016-11-17 06:28:59 -08:00
|
|
|
"../modules/audio_processing",
|
2016-06-01 04:48:26 -07:00
|
|
|
"../modules/media_file",
|
2017-01-19 08:27:11 -08:00
|
|
|
"../modules/video_capture:video_capture",
|
2016-10-24 01:52:39 -07:00
|
|
|
"../modules/video_capture:video_capture_module",
|
2016-06-10 01:56:57 -07:00
|
|
|
"../video",
|
2016-06-01 04:48:26 -07:00
|
|
|
"//testing/gmock",
|
|
|
|
|
"//testing/gtest",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
config("test_renderer_exported_config") {
|
|
|
|
|
if (is_win && is_clang) {
|
|
|
|
|
# GN orders flags on a target before flags from configs. The default config
|
|
|
|
|
# adds -Wall, and this flag have to be after -Wall -- so they need to
|
|
|
|
|
# come from a config and cannot be on the target directly.
|
2016-08-25 04:15:40 -07:00
|
|
|
cflags = [
|
2016-06-01 04:48:26 -07:00
|
|
|
"-Wno-bool-conversion",
|
|
|
|
|
"-Wno-comment",
|
|
|
|
|
"-Wno-delete-non-virtual-dtor",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("test_renderer") {
|
2016-06-01 04:48:26 -07:00
|
|
|
testonly = true
|
|
|
|
|
libs = []
|
|
|
|
|
sources = [
|
|
|
|
|
"linux/glx_renderer.cc",
|
|
|
|
|
"linux/glx_renderer.h",
|
|
|
|
|
"linux/video_renderer_linux.cc",
|
|
|
|
|
"mac/video_renderer_mac.h",
|
|
|
|
|
"mac/video_renderer_mac.mm",
|
|
|
|
|
"video_renderer.cc",
|
|
|
|
|
"video_renderer.h",
|
|
|
|
|
"win/d3d_renderer.cc",
|
|
|
|
|
"win/d3d_renderer.h",
|
|
|
|
|
]
|
|
|
|
|
if (!is_linux && !is_mac && !is_win) {
|
|
|
|
|
sources += [ "null_platform_renderer.cc" ]
|
|
|
|
|
}
|
|
|
|
|
if (is_linux || is_mac) {
|
|
|
|
|
sources += [
|
|
|
|
|
"gl/gl_renderer.cc",
|
|
|
|
|
"gl/gl_renderer.h",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_linux) {
|
|
|
|
|
libs += [
|
|
|
|
|
"Xext",
|
|
|
|
|
"X11",
|
|
|
|
|
"GL",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
if (is_android) {
|
|
|
|
|
libs += [
|
|
|
|
|
"GLESv2",
|
|
|
|
|
"log",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
if (is_mac) {
|
|
|
|
|
libs = [
|
|
|
|
|
"Cocoa.framework",
|
|
|
|
|
"OpenGL.framework",
|
|
|
|
|
"CoreVideo.framework",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-05 06:10:18 -07:00
|
|
|
public_configs = [ ":test_renderer_exported_config" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-01 04:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
":test_support",
|
|
|
|
|
":video_test_common",
|
|
|
|
|
"../modules/media_file",
|
|
|
|
|
"//testing/gtest",
|
|
|
|
|
]
|
|
|
|
|
}
|