1# Copyright (c) 2022-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("PinAuthHdiFuzzTest") {
18  branch_protector_ret = "pac_ret"
19  module_out_path = "drivers_peripheral_pin_auth/drivers_peripheral_pin_auth"
20  fuzz_config_file = "../pinauthhdi_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 = [
34    "iam_fuzz_test.cpp",
35    "pin_auth_hdi_fuzzer.cpp",
36  ]
37
38  deps = [ "../common_fuzzer:libpin_auth_interface_service_2.0_fuzzer" ]
39
40  external_deps = [
41    "c_utils:utils",
42    "drivers_interface_pin_auth:pin_auth_idl_headers",
43    "hilog:libhilog",
44    "ipc:ipc_core",
45  ]
46
47  subsystem_name = "hdf"
48  part_name = "drivers_peripheral_pin_auth"
49}
50