• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_fuzz {
6    host_supported: true,
7    name : "libcrypto_utils_fuzzer",
8    srcs: [
9        "libcrypto_utils_fuzzer.cpp",
10    ],
11    cflags: [
12        "-Wall",
13        "-Werror",
14        "-Wextra",
15    ],
16    shared_libs: [
17        "libcrypto_utils",
18        "libcrypto",
19    ],
20}
21