mirror of
https://github.com/openharmony/distributedhardware_distributed_input.git
synced 2026-07-19 17:43:35 -04:00
a9bbba8870
Signed-off-by: li-tiangang4 <litiangang4@huawei.com>
87 lines
2.8 KiB
Plaintext
Executable File
87 lines
2.8 KiB
Plaintext
Executable File
# Copyright (c) 2021-2024 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("DistributedInputClientFuzzTest") {
|
|
module_out_path = fuzz_test_path
|
|
|
|
fuzz_config_file =
|
|
"${distributedinput_path}/test/fuzztest/distributedinputclient_fuzzer"
|
|
|
|
include_dirs = [
|
|
"${av_transport_path}/common/include",
|
|
"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",
|
|
"${distributedinput_path}/services/state/include",
|
|
"${service_common}/include",
|
|
"${common_path}/include",
|
|
"${fwk_common_path}/log/include",
|
|
"${fwk_common_path}/utils/include",
|
|
"//third_party/json/include",
|
|
"${fwk_interfaces_path}/include",
|
|
"${fwk_interfaces_path}/include/ipc",
|
|
"${services_source_path}/inputinject/include",
|
|
"${utils_path}/include",
|
|
]
|
|
|
|
cflags = [
|
|
"-g",
|
|
"-O0",
|
|
"-Wno-unused-variable",
|
|
"-fno-omit-frame-pointer",
|
|
]
|
|
|
|
sources = [ "distributed_input_client_fuzzer.cpp" ]
|
|
|
|
deps = [
|
|
"${distributedinput_path}/sourcehandler:libdinput_source_handler",
|
|
"//third_party/libevdev:libevdev",
|
|
]
|
|
|
|
external_deps = [
|
|
"c_utils:utils",
|
|
"dsoftbus:softbus_client",
|
|
"eventhandler:libeventhandler",
|
|
"hilog:libhilog",
|
|
"ipc:ipc_core",
|
|
"safwk:system_ability_fwk",
|
|
]
|
|
|
|
defines = [
|
|
"HI_LOG_ENABLE",
|
|
"DH_LOG_TAG=\"DistributedInputClientFuzzTest\"",
|
|
"LOG_DOMAIN=0xD004120",
|
|
]
|
|
}
|
|
|
|
###############################################################################
|
|
group("fuzztest") {
|
|
testonly = true
|
|
|
|
deps = [ ":DistributedInputClientFuzzTest" ]
|
|
}
|
|
###############################################################################
|