blob: f9505f5384361054fd190459a08f12e07a388b8d [file] [log] [blame]
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/components.gni")
group("tests") {
testonly = true
deps = [ ":audio-libprocessing-unittests" ]
}
source_set("processing") {
sources = [
"gain_control.cc",
"gain_control.h",
]
public_deps = [ ":sampler" ]
deps = [
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/zx",
]
}
source_set("sampler") {
sources = [
"gain.h",
"point_sampler.cc",
"point_sampler.h",
"sampler.h",
]
deps = [
"//sdk/lib/syslog/cpp",
"//src/media/audio/lib/format2",
]
# Building without optimizations causes significant slowdowns for these components; the additional
# CPU load may lead to audio glitches on debug builds. These config settings enable the needed
# code optimization while maintaining other 'debug' aspects (e.g. DCHECK is still enabled).
configs -= [ "//build/config:default_optimize" ]
configs += [ "//build/config:optimize_speed" ]
# Allow some of our loops to be vectorized by the compiler.
cflags = [
"-ffast-math",
# Allow inf/nan until we sanitize these out of streams (not normally allowed with -ffast-math).
"-fhonor-infinities",
"-fhonor-nans",
"-fno-finite-math-only",
]
}
executable("unittest-bin") {
visibility = [ ":*" ]
testonly = true
output_name = "audio-libprocessing-unittests"
sources = [
"gain_control_unittest.cc",
"gain_unittest.cc",
"point_sampler_unittest.cc",
"sampler_unittest.cc",
]
deps = [
":processing",
"//src/lib/fxl/test:gtest_main",
"//src/media/audio/lib/format2",
"//third_party/googletest:gmock",
]
}
fuchsia_unittest_package("audio-libprocessing-unittests") {
deps = [ ":unittest-bin" ]
}