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

Unified Diff: webrtc/test/BUILD.gn

Issue 2845323002: Enabling 'gn check' on webrtc/test. (Closed)
Patch Set: making path relative Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/sdk/BUILD.gn ('k') | webrtc/test/fuzzers/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/BUILD.gn
diff --git a/webrtc/test/BUILD.gn b/webrtc/test/BUILD.gn
index 4682b7dcadd8426b5f48ebbdaf9e191e7243aae1..1a80f77e30b64d203db0dbca70a9cc93380c7994 100644
--- a/webrtc/test/BUILD.gn
+++ b/webrtc/test/BUILD.gn
@@ -58,9 +58,14 @@ rtc_source_set("video_test_common") {
}
deps = [
+ "..:video_stream_api",
+ "..:webrtc_common",
+ "../base:rtc_base_approved",
+ "../base:rtc_task_queue",
"../common_video",
"../media:rtc_media_base",
"../modules/video_capture:video_capture_module",
+ "../system_wrappers",
]
}
@@ -82,6 +87,7 @@ rtc_source_set("rtp_test_utils") {
deps = [
"..:webrtc_common",
+ "../base:rtc_base_approved",
"../modules/rtp_rtcp",
"//testing/gtest",
]
@@ -165,6 +171,7 @@ if (!build_with_chromium) {
]
deps = [
":field_trial",
+ "../base:rtc_base_approved",
"../system_wrappers:metrics_default",
"//testing/gmock",
"//testing/gtest",
@@ -188,6 +195,9 @@ if (!build_with_chromium) {
]
deps = [
+ ":test_support",
+ ":video_test_common",
+ "..:webrtc_common",
"../base:rtc_base_approved",
"../common_video",
"../system_wrappers",
@@ -252,7 +262,16 @@ if (!build_with_chromium) {
}
rtc_test("test_support_unittests") {
- deps = []
+ deps = [
+ ":fake_audio_device",
+ ":rtp_test_utils",
+ "../api:video_frame_api",
+ "../base:rtc_base_approved",
+ "../call:call_interfaces",
+ "../common_audio",
+ "../modules/rtp_rtcp",
+ "../system_wrappers",
+ ]
sources = [
"fake_audio_device_unittest.cc",
"fake_network_pipe_unittest.cc",
@@ -318,6 +337,18 @@ rtc_source_set("fileutils") {
sources += [ "testsupport/iosfileutils.mm" ]
}
visibility = [ ":*" ]
+ deps = [
+ "..:webrtc_common",
+ ]
+ if (is_ios) {
+ deps += [
+ "../base:rtc_base_approved",
+ "../sdk:rtc_sdk_common_objc",
+ ]
+ }
+ if (is_win) {
+ deps += [ "../base:rtc_base" ]
+ }
}
rtc_source_set("run_test") {
@@ -340,6 +371,7 @@ rtc_source_set("fileutils_unittests") {
]
deps = [
":fileutils",
+ ":test_support",
"//testing/gmock",
"//testing/gtest",
]
@@ -358,9 +390,12 @@ rtc_source_set("direct_transport") {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
deps = [
+ "..:webrtc_common",
"../api:transport_api",
"../base:rtc_base_approved",
"../call",
+ "../modules/rtp_rtcp",
+ "../system_wrappers",
]
}
@@ -375,8 +410,11 @@ rtc_source_set("fake_audio_device") {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
deps = [
+ "..:webrtc_common",
"../base:rtc_base_approved",
- "../modules/audio_device:audio_device",
+ "../common_audio",
+ "../modules/audio_device",
+ "../system_wrappers",
]
}
@@ -428,15 +466,28 @@ rtc_source_set("test_common") {
":rtp_test_utils",
":test_support",
":video_test_common",
+ "..:video_stream_api",
"..:webrtc_common",
+ "../api:transport_api",
+ "../api:video_frame_api",
+ "../api/audio_codecs:builtin_audio_decoder_factory",
"../api/audio_codecs:builtin_audio_encoder_factory",
"../api/video_codecs:video_codecs_api",
"../audio",
"../base:rtc_base_approved",
+ "../base:rtc_task_queue",
"../call",
+ "../logging:rtc_event_log_api",
+ "../modules/audio_device:mock_audio_device",
"../modules/audio_mixer:audio_mixer_impl",
"../modules/audio_processing",
+ "../modules/rtp_rtcp",
+ "../modules/video_coding:webrtc_h264",
+ "../modules/video_coding:webrtc_vp8",
+ "../modules/video_coding:webrtc_vp9",
+ "../system_wrappers",
"../video",
+ "../voice_engine",
"//testing/gmock",
"//testing/gtest",
]
@@ -512,6 +563,9 @@ rtc_source_set("test_renderer") {
deps = [
":test_support",
+ "..:webrtc_common",
+ "../base:rtc_base_approved",
+ "../common_video",
"../modules/media_file",
"//testing/gtest",
]
@@ -528,7 +582,10 @@ rtc_source_set("audio_codec_mocks") {
]
deps = [
+ ":test_support",
"../api/audio_codecs:audio_codecs_api",
+ "../api/audio_codecs:builtin_audio_decoder_factory",
+ "../base:rtc_base_approved",
"//testing/gmock",
]
}
« no previous file with comments | « webrtc/sdk/BUILD.gn ('k') | webrtc/test/fuzzers/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698