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

Unified Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2649563002: GN: Refactor modules_unittests to eliminate package boundary violations. (Closed)
Patch Set: Revert rename. Created 3 years, 11 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/modules/rtp_rtcp/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/BUILD.gn
diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn
index f84936ad799b929fb5f38c71b9c00513fd013a9b..8fa9522caa3fe38cceedbc5809f385c9d81c2b83 100644
--- a/webrtc/modules/video_coding/BUILD.gn
+++ b/webrtc/modules/video_coding/BUILD.gn
@@ -310,6 +310,36 @@ if (rtc_include_tests) {
"../../test:test_support",
]
}
+
+ rtc_source_set("video_coding_modules_tests") {
+ testonly = true
+ sources = [
+ "codecs/test/videoprocessor_integrationtest.cc",
+ "codecs/vp8/test/vp8_impl_unittest.cc",
+ ]
+ deps = [
+ ":video_codecs_test_framework",
+ ":video_coding",
+ ":webrtc_h264",
+ ":webrtc_vp8",
+ ":webrtc_vp9",
+ "../..:webrtc_common",
+ "../../api:video_frame_api",
+ "../../base:rtc_base_approved",
+ "../../common_video:common_video",
+ "../../media:rtc_media_base",
+ "../../test:test_support",
+ "../../test:video_test_common",
+ ]
+ if (rtc_use_h264) {
+ defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ]
+ }
+ if (!build_with_chromium && is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
+ suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
+ }
+ }
+
rtc_source_set("video_coding_unittests") {
testonly = true
sources = [
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698