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

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: base -> rtc_base. Fixed some dependencies. 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/audio/BUILD.gn ('k') | webrtc/base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/utility/BUILD.gn
diff --git a/webrtc/audio/utility/BUILD.gn b/webrtc/audio/utility/BUILD.gn
index d85b30d1c028f55f5c7e8450b57e1331f7d07283..df5f322fed18ae88a26c8f5f0d7568abb4960142 100644
--- a/webrtc/audio/utility/BUILD.gn
+++ b/webrtc/audio/utility/BUILD.gn
@@ -25,3 +25,22 @@ 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",
+ "../../base:rtc_base_approved",
+ "../../test:test_support",
+ "//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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698