1# Copyright (c) 2023 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/config/features.gni") 15import("//build/test.gni") 16 17ohos_fuzztest("PinAuthExecutorStubFuzzTest") { 18 branch_protector_ret = "pac_ret" 19 module_out_path = "drivers_peripheral_pin_auth/drivers_peripheral_pin_auth" 20 fuzz_config_file = "../pinauthexecutorstub_fuzzer" 21 cflags = [ 22 "-g", 23 "-O0", 24 "-Wno-unused-variable", 25 "-fno-omit-frame-pointer", 26 ] 27 include_dirs = [ 28 "../../../../hdi_service/service/inc", 29 "../../../../hdi_service/main/inc", 30 "../../../../common/logs", 31 ] 32 33 sources = [ "pin_auth_executor_stub_fuzzer.cpp" ] 34 35 deps = [ "../common_fuzzer:libpin_auth_interface_service_2.1_fuzzer" ] 36 37 external_deps = [ 38 "c_utils:utils", 39 "drivers_interface_pin_auth:libpin_auth_stub_2.1", 40 "drivers_interface_pin_auth:pin_auth_idl_headers", 41 "hdf_core:libhdi", 42 "hilog:libhilog", 43 "ipc:ipc_core", 44 ] 45 46 subsystem_name = "hdf" 47 part_name = "drivers_peripheral_pin_auth" 48} 49