1package {
2    default_team: "trendy_team_android_rubidium",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "packages_modules_ExtServices_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["packages_modules_ExtServices_license"],
9}
10
11cc_fuzz {
12    name: "libPHashFuzzer",
13    srcs: [
14        "fuzzed_phash_fingerprinter.cpp",
15    ],
16    static_libs: [
17        "libextservices",
18        "libfft2d",
19    ],
20    apex_available: [
21        "//apex_available:platform",
22        "com.android.extservices",
23    ],
24    fuzz_config: {
25        cc: [
26            "chaviw@google.com",
27            "wanggang@google.com",
28        ],
29
30        // The ID for
31        // Android > Android OS & Apps > Framework (java + native) > SmartOS > ExtServices
32        componentid: 959583,
33    },
34    corpus: [
35        "corpus/*.raw",
36    ],
37}
38