# Copyright (C) 2021 Huawei Device Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import("//build/lite/config/test.gni") group("lite_audio_test") { if (ohos_build_type == "debug") { deps = [ ":lite_audio_unittest" ] } } if (ohos_build_type == "debug") { unittest("lite_audio_unittest") { output_extension = "bin" output_dir = "$root_out_dir/test/unittest/audiolite" sources = [ "unittest/audiolite_test.cpp" ] include_dirs = [ "//foundation/multimedia/audio_lite/frameworks/audio_encoder/include", "//foundation/multimedia/audio_lite/frameworks/audio_source/include", "//foundation/multimedia/audio_lite/interfaces/kits", "//foundation/multimedia/media_utils_lite/include", "//drivers/peripheral/audio/interfaces/include", "//drivers/peripheral/codec/interfaces/include", "//drivers/peripheral/format/interfaces/include", "//drivers/peripheral/display/interfaces/include", "//drivers/peripheral/base", "//foundation/multimedia/audio_lite/test/unittest", "//foundation/multimedia/media_utils_lite/interfaces/kits", ] deps = [ "//foundation/multimedia/audio_lite/frameworks:audio_capturer_lite", "//foundation/multimedia/media_utils_lite:media_common", "//third_party/bounds_checking_function:libsec_shared", ] } }