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

Unified Diff: webrtc/audio/utility/BUILD.gn

Issue 2614833004: GN: Refactor webrtc_nonparallel_tests and audio_tests to avoid crossing package boundaries. (Closed)
Patch Set: 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
Index: webrtc/audio/utility/BUILD.gn
diff --git a/webrtc/audio/utility/BUILD.gn b/webrtc/audio/utility/BUILD.gn
index d85b30d1c028f55f5c7e8450b57e1331f7d07283..668c95ea4396f4807cd90a16aee2c33ace4c76e8 100644
--- a/webrtc/audio/utility/BUILD.gn
+++ b/webrtc/audio/utility/BUILD.gn
@@ -25,3 +25,20 @@ rtc_static_library("audio_frame_operations") {
"../../modules/audio_coding:audio_format_conversion",
]
}
+
+if (rtc_include_tests) {
+ rtc_source_set("utility_tests") {
+ testonly = true
+ sources = [
+ "audio_frame_operations_unittest.cc",
+ ]
+ deps = [
+ ":audio_frame_operations",
+ "//testing/gtest",
+ ]
+ 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" ]
+ }
+ }
+}
« no previous file with comments | « webrtc/audio/BUILD.gn ('k') | webrtc/base/BUILD.gn » ('j') | webrtc/base/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698