• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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("//base/security/certificate_manager/cert_manager.gni")
15import("//build/config/features.gni")
16import("//build/test.gni")
17
18module_output_path = "certificate_manager/certificate_manager"
19
20##############################fuzztest##########################################
21ohos_fuzztest("CmRemoveGrantedAppFuzzTest") {
22  module_out_path = module_output_path
23
24  fuzz_config_file =
25      "${cert_manager_root_dir}/test/fuzz_test/cmremovegrantedapp_fuzzer"
26
27  cflags = [
28    "-g",
29    "-O0",
30    "-Wno-unused-variable",
31    "-fno-omit-frame-pointer",
32  ]
33  sources = [ "cmremovegrantedapp_fuzzer.cpp" ]
34  deps = [
35    "${cert_manager_root_dir}/frameworks/cert_manager_standard/main/common:libcert_manager_common_standard_static",
36    "${cert_manager_root_dir}/interfaces/innerkits/cert_manager_standard/main:cert_manager_sdk",
37    "${cert_manager_root_dir}/test/fuzz_test/fuzz_test_common:libcert_manager_fuzz_test_common_static",
38  ]
39  external_deps = [
40    "access_token:libaccesstoken_sdk",
41    "access_token:libnativetoken",
42    "access_token:libtoken_setproc",
43    "bounds_checking_function:libsec_static",
44    "cJSON:cjson_static",
45    "c_utils:utils",
46    "selinux_adapter:librestorecon",
47  ]
48}
49
50###############################################################################
51group("fuzztest") {
52  testonly = true
53  deps = []
54
55  deps += [
56    # deps file
57    ":CmRemoveGrantedAppFuzzTest",
58  ]
59}
60###############################################################################
61