• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5rust_fuzz {
6    name: "smallvec_fuzzer",
7    srcs: ["smallvec_fuzzer.rs"],
8    proc_macros: ["libnum_derive"],
9    rustlibs: [
10        "libarbitrary",
11        "libnum_traits",
12        "libsmallvec",
13    ],
14    fuzz_config: {
15        fuzz_on_haiku_device: true,
16        fuzz_on_haiku_host: true,
17    },
18}
19