Files
distributedhardware_distrib…/test/fuzztest/distributedinputkit_fuzzer/BUILD.gn
T
xxxx 32d8d95355 Description:add startScreen Feature
Match-id-ac751a4511a3e385320912de43c9860f0c22a529
2022-08-15 18:15:22 +08:00

100 lines
3.9 KiB
Plaintext
Executable File

# Copyright (c) 2021-2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_input/distributedinput.gni")
##############################fuzztest##########################################
ohos_fuzztest("DistributedInputKitFuzzTest") {
module_out_path = "distributed_input/system"
# fuzz_config_file = "//foundation/distributedhardware/distributed_input/test/fuzztest/distributedinputkit_fuzzer"
include_dirs = [
"include",
"${distributedinput_path}/interfaces/inner_kits/include",
"${distributedinput_path}/interfaces/ipc/include",
"${distributedinput_path}/services/source/sourcemanager/include",
"${distributedinput_path}/services/sink/sinkmanager/include",
"${distributedinput_path}/frameworks/include",
"${distributedinput_path}/sourcehandler/include",
"${distributedinput_path}/sinkhandler/include",
"${distributedinput_path}/inputdevicehandler/include",
"//foundation/distributedhardware/distributed_hardware_fwk/common/utils/include",
"//commonlibrary/c_utils/base/include",
"//utils/system/safwk/native/include",
"${service_common}/include",
"${common_path}/include",
"//third_party/json/include",
"//foundation/distributedhardware/distributed_hardware_fwk/common/log/include",
"//foundation/distributedhardware/distributed_hardware_fwk/common/utils/include",
"//foundation/distributedhardware/distributed_hardware_fwk/utils/include/log",
"//foundation/distributedhardware/distributed_hardware_fwk/utils/include",
"${utils_path}/include",
"${fwk_interfaces_path}/include",
"${fwk_interfaces_path}/include/ipc",
"${services_source_path}/inputinject/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "distributed_input_kit_fuzzer.cpp" ]
deps = [
"${distributedinput_path}/inputdevicehandler:libdinput_handler",
"${distributedinput_path}/interfaces/inner_kits:libdinput_sdk",
"${distributedinput_path}/services/sink/inputcollector:libdinput_collector",
"${distributedinput_path}/services/sink/sinkmanager:libdinput_sink",
"${distributedinput_path}/services/sink/transport:libdinput_sink_trans",
"${distributedinput_path}/services/source/inputinject:libdinput_inject",
"${distributedinput_path}/services/source/sourcemanager:libdinput_source",
"${distributedinput_path}/services/source/transport:libdinput_source_trans",
"${distributedinput_path}/sinkhandler:libdinput_sink_handler",
"${distributedinput_path}/sourcehandler:libdinput_source_handler",
"//base/notification/eventhandler/frameworks/eventhandler:libeventhandler",
"${utils_path}:libdinput_utils",
"${fwk_interfaces_path}:libdhfwk_sdk",
]
external_deps = [
"c_utils:utils",
"dsoftbus:softbus_client",
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr:samgr_proxy",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"DistributedInputKitFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":DistributedInputKitFuzzTest" ]
}
###############################################################################