# Copyright (c) 2023 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/test.gni")
import("../../../../config.gni")
module_output_path = "webview/Multimedia"
config("module_private_config") {
visibility = [ ":*" ]
include_dirs = [
"../../../../ohos_adapter/media_adapter/include",
"../../../../ohos_adapter/graphic_adapter/include",
"../../../../ohos_nweb/include",
]
cflags_cc = [ "--coverage" ]
ldflags = [ "--coverage" ]
}
ohos_unittest("nweb_media_adapter_test") {
module_out_path = module_output_path
sources = [
"audio_cenc_info_adapter_impl_test.cpp",
"buffer_info_adapter_impl_test.cpp",
"capability_data_adapter_impl_test.cpp",
"codec_format_adapter_impl_test.cpp",
"media_avsession_adapter_impl_test.cpp",
"media_codec_decoder_adapter_impl_test.cpp",
"media_codec_encoder_adapter_impl_test.cpp",
"ohos_buffer_adapter_impl_test.cpp",
"player_framework_adapter_impl_test.cpp",
]
configs = [ ":module_private_config" ]
include_dirs = [ "../../../../ohos_nweb/include" ]
deps = [ "../../../../ohos_adapter:nweb_ohos_adapter" ]
external_deps = [
"c_utils:utils",
"googletest:gmock_main",
"googletest:gtest_main",
"graphic_surface:surface",
"hilog:libhilog",
]
if (webview_drm_enable) {
external_deps += [ "drm_framework:native_drm" ]
sources += [ "drm_adapter_impl_test.cpp" ]
sources += [ "audio_codec_decoder_adapter_impl_test.cpp" ]
}
if (webview_avcodec_enable) {
external_deps += [
"av_codec:av_codec_client",
"av_codec:native_media_codecbase",
"media_foundation:media_foundation",
"media_foundation:native_media_core",
]
}
if (webview_media_player_enable) {
external_deps += [ "player_framework:media_client" ]
}
if (webview_media_avsession_enable) {
external_deps += [
"ability_base:want",
"ability_runtime:app_context",
"ability_runtime:wantagent_innerkits",
"av_session:avsession_client",
"input:libmmi-client",
]
}
}
group("unittest") {
testonly = true
deps = []
if (webview_media_player_enable) {
deps += [ ":nweb_media_adapter_test" ]
}
}